project/kiwipycon/registration/migrations/0002_create_wifi.py
changeset 7 ac5a1c60c2bc
parent 1 fda1c66b25f9
equal deleted inserted replaced
4:f9757a637d04 7:ac5a1c60c2bc
    35             'user': ('models.ForeignKey', ['User'], {}),
    35             'user': ('models.ForeignKey', ['User'], {}),
    36             'wifi': ('models.CharField', [], {'max_length': '50'})
    36             'wifi': ('models.CharField', [], {'max_length': '50'})
    37         },
    37         },
    38         'registration.registration': {
    38         'registration.registration': {
    39             'allow_contact': ('models.BooleanField', [], {'default': 'False'}),
    39             'allow_contact': ('models.BooleanField', [], {'default': 'False'}),
    40             'amount': ('models.IntegerField', [], {'default': '0'}),
       
    41             'beverage': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
       
    42             'city': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
    40             'city': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
    43             'diet': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
       
    44             'discount': ('models.BooleanField', [], {'default': 'False'}),
       
    45             'id': ('models.AutoField', [], {'primary_key': 'True'}),
    41             'id': ('models.AutoField', [], {'primary_key': 'True'}),
    46             'last_mod': ('models.DateTimeField', [], {'auto_now': 'True'}),
    42             'last_mod': ('models.DateTimeField', [], {'auto_now': 'True'}),
    47             'occupation': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
    43             'occupation': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
    48             'organisation': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
    44             'organisation': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
    49             'party': ('models.BooleanField', [], {'default': 'False'}),
    45             'conference': ('models.BooleanField', [], {'default': 'False'}),
    50             'payment': ('models.BooleanField', [], {'default': 'False'}),
    46             'tutorial': ('models.BooleanField', [], {'default': 'False'}),
       
    47             'sprint': ('models.BooleanField', [], {'default': 'False'}),
    51             'postcode': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
    48             'postcode': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
    52             'registrant': ('models.ForeignKey', ['User'], {}),
    49             'registrant': ('models.ForeignKey', ['User'], {}),
    53             'slug': ('models.SlugField', [], {}),
    50             'slug': ('models.SlugField', [], {}),
    54             'sponsor': ('models.CharField', [], {'max_length': '255', 'blank': 'True'}),
       
    55             'submitted': ('models.DateTimeField', [], {'auto_now_add': 'True'}),
    51             'submitted': ('models.DateTimeField', [], {'auto_now_add': 'True'}),
    56             'tshirt': ('models.CharField', [], {'max_length': '2'})
    52             'tshirt': ('models.CharField', [], {'max_length': '2'})
    57         }
    53         }
    58     }
    54     }
    59     
    55