Skip to content

Commit

Permalink
Add migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaith committed May 6, 2016
1 parent 4ee8472 commit 9c6fdd9
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
26 changes: 26 additions & 0 deletions talks/events/migrations/0013_auto_20160506_1550.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('events', '0012_remove_event_speaker_tba'),
]

operations = [
migrations.AlterField(
model_name='event',
name='audience',
field=models.TextField(default=b'oxonly', verbose_name=b'Who can attend'),
preserve_default=True,
),
migrations.AlterField(
model_name='event',
name='status',
field=models.TextField(default=b'published', verbose_name=b'Status', choices=[(b'preparation', b'In preparation'), (b'published', b'Published'), (b'cancelled', b'Cancelled')]),
preserve_default=True,
),
]
18 changes: 18 additions & 0 deletions talks/users/migrations/0013_auto_20160506_1550.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('users', '0012_collecteddepartment'),
]

operations = [
migrations.AlterModelOptions(
name='talksusercollection',
options={'verbose_name': 'Public Collection Ownership', 'verbose_name_plural': 'Public Collection Ownerships'},
),
]

0 comments on commit 9c6fdd9

Please sign in to comment.