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

# Generated by Django 2.2 on 2019-04-19 12:33 

 

from django.db import migrations, models 

 

 

class Migration(migrations.Migration): 

 

dependencies = [ 

('users', '0003_auto_20190401_1800'), 

] 

 

operations = [ 

migrations.AddField( 

model_name='customuser', 

name='about_me', 

field=models.TextField(blank=True, null=True, verbose_name='about me'), 

), 

migrations.AddField( 

model_name='customuser', 

name='gender', 

field=models.CharField(blank=True, choices=[('m', 'male'), ('f', 'female')], max_length=1, null=True), 

), 

migrations.AddField( 

model_name='customuser', 

name='website', 

field=models.CharField(blank=True, max_length=255, null=True, verbose_name='my website'), 

), 

]