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-26 15:43 

2 

3from django.conf import settings 

4from django.db import migrations, models 

5 

6 

7class Migration(migrations.Migration): 

8 

9 dependencies = [ 

10 ('policorp', '0010_auto_20201123_1415'), 

11 ] 

12 

13 operations = [ 

14 migrations.AddField( 

15 model_name='location', 

16 name='supervisors', 

17 field=models.ManyToManyField(related_name='supervisedLocations', to=settings.AUTH_USER_MODEL), 

18 ), 

19 ]