diff --git a/RIGS/migrations/0011_venue_address.py b/RIGS/migrations/0011_venue_address.py new file mode 100644 index 00000000..5973866f --- /dev/null +++ b/RIGS/migrations/0011_venue_address.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + dependencies = [ + ('RIGS', '0010_auto_20141105_2219'), + ] + + operations = [ + migrations.AddField( + model_name='venue', + name='address', + field=models.TextField(blank=True, null=True), + preserve_default=True, + ), + ] diff --git a/RIGS/migrations/0012_auto_20141106_0253.py b/RIGS/migrations/0012_auto_20141106_0253.py new file mode 100644 index 00000000..10fa6429 --- /dev/null +++ b/RIGS/migrations/0012_auto_20141106_0253.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + dependencies = [ + ('RIGS', '0011_venue_address'), + ] + + operations = [ + migrations.AlterModelOptions( + name='eventitem', + options={'ordering': ['order']}, + ), + migrations.AlterModelOptions( + name='vatrate', + options={'ordering': ['-start_at'], 'get_latest_by': 'start_at'}, + ), + ] diff --git a/db.sqlite3 b/db.sqlite3 index ed270eb6..4fdb98f5 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ