Coverage for notifier\migrations\0001_initial.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.0 on 2019-03-29 16:00
('contenttypes', '0002_remove_content_type_name'), ]
migrations.CreateModel( name='Notification', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('object_id', models.PositiveIntegerField()), ('verb', models.CharField(max_length=40)), ('target', models.CharField(max_length=10)), ('link', models.CharField(blank=True, max_length=255, null=True)), ('structure', models.CharField(blank=True, max_length=4, null=True)), ('read', models.BooleanField(default=False)), ('when', models.DateTimeField(auto_now_add=True)), ('only_in_feed', models.BooleanField(default=False)), ('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType')), ], ), ] |