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

# encoding: utf8 

from django.db import models, migrations 

from django.conf import settings 

 

 

class Migration(migrations.Migration): 

 

    dependencies = [ 

        migrations.swappable_dependency(settings.AUTH_USER_MODEL), 

        ('contest', '0004_auto_20140407_1808'), 

    ] 

 

    operations = [ 

        migrations.CreateModel( 

            name='HandedOutCaps', 

            fields=[ 

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

                ('user', models.ForeignKey(to=settings.AUTH_USER_MODEL, to_field='id')), 

                ('when', models.DateTimeField(auto_now_add=True)), 

                ('notes', models.CharField(max_length=255)), 

            ], 

            options={ 

            }, 

            bases=(models.Model,), 

        ), 

    ]