Coverage for common\migrations\0024_auto_20190527_2001.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# Generated by Django 2.2 on 2019-05-27 20:01
('common', '0023_auto_20190527_1312'), ]
migrations.AlterField( model_name='fanfic', name='date_added', field=models.DateField(auto_now_add=True), ), migrations.CreateModel( name='UserFanficError', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('issue', models.CharField(choices=[(0, 'metadata'), (1, 'chapters'), (2, 'other')], max_length=3)), ('comment', models.CharField(blank=True, max_length=255, null=True)), ('date', models.DateTimeField(auto_now=True)), ('fanfic', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='common.Fanfic')), ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='common.List')), ], options={ 'verbose_name': 'User submitted errors', 'verbose_name_plural': 'User submitted errors', }, ), ] |