Skip to content

Commit 9d1d857

Browse files
committed
Add migration files
1 parent 4ad7fd5 commit 9d1d857

File tree

3 files changed

+95
-0
lines changed

3 files changed

+95
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.17 on 2020-04-08 23:54
3+
from __future__ import unicode_literals
4+
5+
from django.conf import settings
6+
from django.db import migrations, models
7+
import django.db.models.deletion
8+
9+
10+
class Migration(migrations.Migration):
11+
12+
dependencies = [
13+
('conferences', '0015_auto_20200322_1904'),
14+
]
15+
16+
operations = [
17+
migrations.AddField(
18+
model_name='historicalconferenceproposalreviewer',
19+
name='history_change_reason',
20+
field=models.CharField(max_length=100, null=True),
21+
),
22+
migrations.AlterField(
23+
model_name='historicalconferenceproposalreviewer',
24+
name='created_by',
25+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Created By'),
26+
),
27+
migrations.AlterField(
28+
model_name='historicalconferenceproposalreviewer',
29+
name='modified_by',
30+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Modified By'),
31+
),
32+
]
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.17 on 2020-04-08 23:54
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
import uuid
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
dependencies = [
12+
('devices', '0002_auto_20160623_1448'),
13+
]
14+
15+
operations = [
16+
migrations.AddField(
17+
model_name='device',
18+
name='uuid',
19+
field=models.UUIDField(default=uuid.uuid4, editable=False, unique=True),
20+
),
21+
]
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.17 on 2020-04-08 23:54
3+
from __future__ import unicode_literals
4+
5+
from django.conf import settings
6+
from django.db import migrations, models
7+
import django.db.models.deletion
8+
9+
10+
class Migration(migrations.Migration):
11+
12+
dependencies = [
13+
('proposals', '0026_auto_20200323_2010'),
14+
]
15+
16+
operations = [
17+
migrations.AddField(
18+
model_name='historicalproposal',
19+
name='history_change_reason',
20+
field=models.CharField(max_length=100, null=True),
21+
),
22+
migrations.AddField(
23+
model_name='historicalproposalsectionreviewervote',
24+
name='history_change_reason',
25+
field=models.CharField(max_length=100, null=True),
26+
),
27+
migrations.AlterField(
28+
model_name='historicalproposal',
29+
name='author',
30+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Primary Speaker'),
31+
),
32+
migrations.AlterField(
33+
model_name='historicalproposal',
34+
name='proposal_section',
35+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='proposals.ProposalSection', verbose_name='Proposal Section'),
36+
),
37+
migrations.AlterField(
38+
model_name='historicalproposal',
39+
name='proposal_type',
40+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='proposals.ProposalType', verbose_name='Proposal Type'),
41+
),
42+
]

0 commit comments

Comments
 (0)