Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add absent iesg 0001_initial.py migration#5336

Merged
Next Next commit
chore: Add absent iesg 0001_initial.py migration
  • Loading branch information
jennifer-richards committed Mar 14, 2023
commit 104f85533e92c02175fe126967b53f03ecaddc8d
54 changes: 54 additions & 0 deletions ietf/iesg/migrations/0001_initial.py
@@ -0,0 +1,54 @@
# Generated by Django 2.2.28 on 2023-03-10 16:13

from django.db import migrations, models
import ietf.iesg.models


class Migration(migrations.Migration):

initial = True

dependencies = [
]

operations = [
migrations.CreateModel(
name='Telechat',
fields=[
('telechat_id', models.IntegerField(primary_key=True, serialize=False)),
('telechat_date', models.DateField(blank=True, null=True)),
('minute_approved', models.IntegerField(blank=True, null=True)),
('wg_news_txt', models.TextField(blank=True)),
('iab_news_txt', models.TextField(blank=True)),
('management_issue', models.TextField(blank=True)),
('frozen', models.IntegerField(blank=True, null=True)),
('mi_frozen', models.IntegerField(blank=True, null=True)),
],
options={
'db_table': 'telechat',
},
),
migrations.CreateModel(
name='TelechatAgendaItem',
fields=[
('id', models.AutoField(db_column='template_id', primary_key=True, serialize=False)),
('text', models.TextField(blank=True, db_column='template_text')),
('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)),
('title', models.CharField(db_column='template_title', max_length=255)),
],
),
migrations.CreateModel(
name='TelechatDate',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('date', models.DateField(default=ietf.iesg.models.next_telechat_date)),
],
options={
'ordering': ['-date'],
},
),
migrations.AddIndex(
model_name='telechatdate',
index=models.Index(fields=['-date'], name='iesg_telech_date_a0e0ed_idx'),
),
]