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# Generated by Django 3.1.2 on 2020-11-19 20:14 

2 

3from django.db import migrations, models 

4 

5 

6class Migration(migrations.Migration): 

7 

8 dependencies = [ 

9 ('policorp', '0001_initial'), 

10 ] 

11 

12 operations = [ 

13 migrations.CreateModel( 

14 name='Booking', 

15 fields=[ 

16 ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), 

17 ], 

18 ), 

19 ]