|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +from __future__ import unicode_literals |
| 3 | + |
| 4 | +from django.db import models, migrations |
| 5 | + |
| 6 | + |
| 7 | +class Migration(migrations.Migration): |
| 8 | + |
| 9 | + dependencies = [ |
| 10 | + ] |
| 11 | + |
| 12 | + operations = [ |
| 13 | + migrations.CreateModel( |
| 14 | + name='CommunityList', |
| 15 | + fields=[ |
| 16 | + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), |
| 17 | + ('secret', models.CharField(max_length=255, null=True, blank=True)), |
| 18 | + ('cached', models.TextField(null=True, blank=True)), |
| 19 | + ], |
| 20 | + options={ |
| 21 | + }, |
| 22 | + bases=(models.Model,), |
| 23 | + ), |
| 24 | + migrations.CreateModel( |
| 25 | + name='DisplayConfiguration', |
| 26 | + fields=[ |
| 27 | + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), |
| 28 | + ('sort_method', models.CharField(default=b'by_filename', max_length=100, choices=[(b'by_filename', b'Alphabetical by I-D filename and RFC number'), (b'by_title', b'Alphabetical by document title'), (b'by_wg', b'Alphabetical by associated WG'), (b'date_publication', b'Date of publication of current version of the document'), (b'recent_change', b'Date of most recent change of status of any type'), (b'recent_significant', b'Date of most recent significant change of status')])), |
| 29 | + ('display_fields', models.TextField(default=b'filename,title,date')), |
| 30 | + ], |
| 31 | + options={ |
| 32 | + }, |
| 33 | + bases=(models.Model,), |
| 34 | + ), |
| 35 | + migrations.CreateModel( |
| 36 | + name='DocumentChangeDates', |
| 37 | + fields=[ |
| 38 | + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), |
| 39 | + ('new_version_date', models.DateTimeField(null=True, blank=True)), |
| 40 | + ('normal_change_date', models.DateTimeField(null=True, blank=True)), |
| 41 | + ('significant_change_date', models.DateTimeField(null=True, blank=True)), |
| 42 | + ], |
| 43 | + options={ |
| 44 | + }, |
| 45 | + bases=(models.Model,), |
| 46 | + ), |
| 47 | + migrations.CreateModel( |
| 48 | + name='EmailSubscription', |
| 49 | + fields=[ |
| 50 | + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), |
| 51 | + ('email', models.CharField(max_length=200)), |
| 52 | + ('significant', models.BooleanField(default=False)), |
| 53 | + ], |
| 54 | + options={ |
| 55 | + }, |
| 56 | + bases=(models.Model,), |
| 57 | + ), |
| 58 | + migrations.CreateModel( |
| 59 | + name='ExpectedChange', |
| 60 | + fields=[ |
| 61 | + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), |
| 62 | + ('expected_date', models.DateField(verbose_name=b'Expected date')), |
| 63 | + ], |
| 64 | + options={ |
| 65 | + }, |
| 66 | + bases=(models.Model,), |
| 67 | + ), |
| 68 | + migrations.CreateModel( |
| 69 | + name='ListNotification', |
| 70 | + fields=[ |
| 71 | + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), |
| 72 | + ('significant', models.BooleanField(default=False)), |
| 73 | + ], |
| 74 | + options={ |
| 75 | + }, |
| 76 | + bases=(models.Model,), |
| 77 | + ), |
| 78 | + migrations.CreateModel( |
| 79 | + name='Rule', |
| 80 | + fields=[ |
| 81 | + ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), |
| 82 | + ('rule_type', models.CharField(max_length=30, choices=[(b'wg_asociated', b'All I-Ds associated with a particular WG'), (b'area_asociated', b'All I-Ds associated with all WGs in a particular Area'), (b'ad_responsible', b'All I-Ds with a particular responsible AD'), (b'author', b'All I-Ds with a particular author'), (b'shepherd', b'All I-Ds with a particular document shepherd'), (b'with_text', b'All I-Ds that contain a particular text string in the name'), (b'in_iab_state', b'All I-Ds that are in a particular IAB state'), (b'in_iana_state', b'All I-Ds that are in a particular IANA state'), (b'in_iesg_state', b'All I-Ds that are in a particular IESG state'), (b'in_irtf_state', b'All I-Ds that are in a particular IRTF state'), (b'in_ise_state', b'All I-Ds that are in a particular ISE state'), (b'in_rfcEdit_state', b'All I-Ds that are in a particular RFC Editor state'), (b'in_wg_state', b'All I-Ds that are in a particular Working Group state'), (b'wg_asociated_rfc', b'All RFCs associated with a particular WG'), (b'area_asociated_rfc', b'All RFCs associated with all WGs in a particular Area'), (b'author_rfc', b'All RFCs with a particular author')])), |
| 83 | + ('value', models.CharField(max_length=255)), |
| 84 | + ('last_updated', models.DateTimeField(auto_now=True)), |
| 85 | + ], |
| 86 | + options={ |
| 87 | + }, |
| 88 | + bases=(models.Model,), |
| 89 | + ), |
| 90 | + ] |
0 commit comments