Hide keyboard shortcuts

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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

# Generated by Django 2.0 on 2019-03-29 16:00 

 

from django.db import migrations, models 

import django.db.models.deletion 

 

 

class Migration(migrations.Migration): 

 

initial = True 

 

dependencies = [ 

('contenttypes', '0002_remove_content_type_name'), 

] 

 

operations = [ 

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')), 

], 

), 

]