Skip to content

Commit 228f002

Browse files
committed
Added migrations for model changes
- Legacy-Id: 17938
1 parent 49bf609 commit 228f002

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 2.0.13 on 2020-06-08 12:12
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('person', '0010_auto_20200415_1133'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='personalapikey',
15+
name='endpoint',
16+
field=models.CharField(choices=[('/api/iesg/position', '/api/iesg/position'), ('/api/v2/person/person', '/api/v2/person/person'), ('/api/meeting/session/video/url', '/api/meeting/session/video/url'), ('/api/person/access/meetecho', '/api/person/access/meetecho'), ('/api/notify/meeting/registration', '/api/notify/meeting/registration')], max_length=128),
17+
),
18+
]
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 2.0.13 on 2020-06-07 15:19
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('stats', '0001_initial'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='meetingregistration',
15+
name='reg_type',
16+
field=models.CharField(blank=True, max_length=255),
17+
),
18+
migrations.AddField(
19+
model_name='meetingregistration',
20+
name='ticket_type',
21+
field=models.CharField(blank=True, max_length=255),
22+
),
23+
]

0 commit comments

Comments
 (0)