project/kiwipycon/talk/migrations/0001_initial.py
changeset 8 bffb109e23c1
parent 1 fda1c66b25f9
equal deleted inserted replaced
7:ac5a1c60c2bc 8:bffb109e23c1
    15             ('speaker', models.ForeignKey(orm['auth.User'])),
    15             ('speaker', models.ForeignKey(orm['auth.User'])),
    16             ('authors_bio', models.TextField()),
    16             ('authors_bio', models.TextField()),
    17             ('contact', models.CharField(max_length=1024)),
    17             ('contact', models.CharField(max_length=1024)),
    18             ('title', models.CharField(max_length=1024)),
    18             ('title', models.CharField(max_length=1024)),
    19             ('abstract', models.TextField()),
    19             ('abstract', models.TextField()),
    20             ('outline', models.TextField()),
    20 #            ('outline', models.TextField()),
    21             ('topic', models.CharField(blank=True, max_length=255)),
    21             ('topic', models.CharField(blank=True, max_length=255)),
    22             ('topic_other', models.CharField(max_length=255, blank=True)),
    22 #            ('topic_other', models.CharField(max_length=255, blank=True)),
    23             ('duration', models.CharField(max_length=3)),
    23             ('duration', models.CharField(max_length=3)),
    24             ('audience', models.CharField(blank=True, max_length=32)),
    24             ('audience', models.CharField(blank=True, max_length=32)),
    25             ('audience_other', models.CharField(max_length=128, blank=True)),
    25 #            ('audience_other', models.CharField(max_length=128, blank=True)),
    26             ('approved', models.BooleanField(default=False)),
    26             ('approved', models.BooleanField(default=False)),
    27             ('submitted', models.DateTimeField(auto_now_add=True)),
    27             ('submitted', models.DateTimeField(auto_now_add=True)),
    28             ('last_mod', models.DateTimeField(auto_now=True)),
    28             ('last_mod', models.DateTimeField(auto_now=True)),
    29             ('tags', TagField(blank=True)),
    29 #            ('tags', TagField(blank=True)),
    30         ))
    30         ))
    31         db.send_create_signal('talk', ['Talk'])
    31         db.send_create_signal('talk', ['Talk'])
    32         
    32         
    33     
    33     
    34     
    34