21b2a01a84
This is all noop in Py3, and Py2 is broke now in various places. Dropping Py2 code as it will not be a thing going forward. Django 2 is the next release, Py2 support will be dropped, as such, dropping this is forward looking.
18 lines
474 B
Python
18 lines
474 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-12-24 00:10
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('symposion_schedule', '0005_auto_20161210_1736'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='room',
|
|
name='track',
|
|
field=models.CharField(blank=True, default=None, max_length=80, null=True, verbose_name='Track'),
|
|
),
|
|
]
|