Skip to content

Commit 104f855

Browse files
chore: Add absent iesg 0001_initial.py migration
1 parent f810eda commit 104f855

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

ietf/iesg/migrations/0001_initial.py

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Generated by Django 2.2.28 on 2023-03-10 16:13
2+
3+
from django.db import migrations, models
4+
import ietf.iesg.models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
initial = True
10+
11+
dependencies = [
12+
]
13+
14+
operations = [
15+
migrations.CreateModel(
16+
name='Telechat',
17+
fields=[
18+
('telechat_id', models.IntegerField(primary_key=True, serialize=False)),
19+
('telechat_date', models.DateField(blank=True, null=True)),
20+
('minute_approved', models.IntegerField(blank=True, null=True)),
21+
('wg_news_txt', models.TextField(blank=True)),
22+
('iab_news_txt', models.TextField(blank=True)),
23+
('management_issue', models.TextField(blank=True)),
24+
('frozen', models.IntegerField(blank=True, null=True)),
25+
('mi_frozen', models.IntegerField(blank=True, null=True)),
26+
],
27+
options={
28+
'db_table': 'telechat',
29+
},
30+
),
31+
migrations.CreateModel(
32+
name='TelechatAgendaItem',
33+
fields=[
34+
('id', models.AutoField(db_column='template_id', primary_key=True, serialize=False)),
35+
('text', models.TextField(blank=True, db_column='template_text')),
36+
('type', models.IntegerField(choices=[(1, 'Any Other Business (WG News, New Proposals, etc.)'), (2, 'IAB News'), (3, 'Management Item')], db_column='template_type', default=3)),
37+
('title', models.CharField(db_column='template_title', max_length=255)),
38+
],
39+
),
40+
migrations.CreateModel(
41+
name='TelechatDate',
42+
fields=[
43+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
44+
('date', models.DateField(default=ietf.iesg.models.next_telechat_date)),
45+
],
46+
options={
47+
'ordering': ['-date'],
48+
},
49+
),
50+
migrations.AddIndex(
51+
model_name='telechatdate',
52+
index=models.Index(fields=['-date'], name='iesg_telech_date_a0e0ed_idx'),
53+
),
54+
]

0 commit comments

Comments
 (0)