project/scipycon/registration/migrations/0001_initial.py
changeset 324 1ad0be6866d6
parent 309 861223798fa4
equal deleted inserted replaced
323:5d8dd7139b49 324:1ad0be6866d6
     1 # encoding: utf-8
     1 
     2 import datetime
       
     3 from south.db import db
     2 from south.db import db
     4 from south.v2 import SchemaMigration
       
     5 from django.db import models
     3 from django.db import models
       
     4 from project.scipycon.registration.models import *
     6 
     5 
     7 class Migration(SchemaMigration):
     6 class Migration:
     8 
     7     
     9     def forwards(self, orm):
     8     def forwards(self, orm):
    10         
     9         
    11         # Adding model 'Wifi'
    10         # Adding model 'Wifi'
    12         db.create_table('registration_wifi', (
    11         db.create_table('registration_wifi', (
    13             ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
    12             ('id', orm['registration.Wifi:id']),
    14             ('scope', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['base.Event'])),
    13             ('scope', orm['registration.Wifi:scope']),
    15             ('user', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'])),
    14             ('user', orm['registration.Wifi:user']),
    16             ('wifi', self.gf('django.db.models.fields.CharField')(max_length=50)),
    15             ('wifi', orm['registration.Wifi:wifi']),
    17             ('registration_id', self.gf('django.db.models.fields.CharField')(max_length=255, null=True, blank=True)),
    16             ('registration_id', orm['registration.Wifi:registration_id']),
    18         ))
    17         ))
    19         db.send_create_signal('registration', ['Wifi'])
    18         db.send_create_signal('registration', ['Wifi'])
    20 
    19         
    21         # Adding model 'Accommodation'
    20         # Adding model 'Accommodation'
    22         db.create_table('registration_accommodation', (
    21         db.create_table('registration_accommodation', (
    23             ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
    22             ('id', orm['registration.Accommodation:id']),
    24             ('scope', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['base.Event'])),
    23             ('scope', orm['registration.Accommodation:scope']),
    25             ('user', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'])),
    24             ('user', orm['registration.Accommodation:user']),
    26             ('sex', self.gf('django.db.models.fields.CharField')(max_length=50, null=True, blank=True)),
    25             ('sex', orm['registration.Accommodation:sex']),
    27             ('accommodation_required', self.gf('django.db.models.fields.BooleanField')(default=False)),
    26             ('accommodation_required', orm['registration.Accommodation:accommodation_required']),
    28             ('accommodation_days', self.gf('django.db.models.fields.IntegerField')(default=0, blank=True)),
    27             ('accommodation_on_1st', orm['registration.Accommodation:accommodation_on_1st']),
       
    28             ('accommodation_on_2nd', orm['registration.Accommodation:accommodation_on_2nd']),
       
    29             ('accommodation_on_3rd', orm['registration.Accommodation:accommodation_on_3rd']),
       
    30             ('accommodation_on_4th', orm['registration.Accommodation:accommodation_on_4th']),
       
    31             ('accommodation_on_5th', orm['registration.Accommodation:accommodation_on_5th']),
       
    32             ('accommodation_on_6th', orm['registration.Accommodation:accommodation_on_6th']),
       
    33             ('accommodation_days', orm['registration.Accommodation:accommodation_days']),
    29         ))
    34         ))
    30         db.send_create_signal('registration', ['Accommodation'])
    35         db.send_create_signal('registration', ['Accommodation'])
    31 
    36         
       
    37         # Adding model 'Payment'
       
    38         db.create_table('registration_payment', (
       
    39             ('id', orm['registration.Payment:id']),
       
    40             ('scope', orm['registration.Payment:scope']),
       
    41             ('user', orm['registration.Payment:user']),
       
    42             ('confirmed', orm['registration.Payment:confirmed']),
       
    43             ('acco_confirmed', orm['registration.Payment:acco_confirmed']),
       
    44             ('date_confirmed', orm['registration.Payment:date_confirmed']),
       
    45             ('confirmed_mail', orm['registration.Payment:confirmed_mail']),
       
    46             ('acco_confirmed_mail', orm['registration.Payment:acco_confirmed_mail']),
       
    47             ('type', orm['registration.Payment:type']),
       
    48             ('details', orm['registration.Payment:details']),
       
    49         ))
       
    50         db.send_create_signal('registration', ['Payment'])
       
    51         
    32         # Adding model 'Registration'
    52         # Adding model 'Registration'
    33         db.create_table('registration_registration', (
    53         db.create_table('registration_registration', (
    34             ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
    54             ('id', orm['registration.Registration:id']),
    35             ('scope', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['base.Event'])),
    55             ('scope', orm['registration.Registration:scope']),
    36             ('slug', self.gf('django.db.models.fields.SlugField')(max_length=50, db_index=True)),
    56             ('slug', orm['registration.Registration:slug']),
    37             ('registrant', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'])),
    57             ('registrant', orm['registration.Registration:registrant']),
    38             ('organisation', self.gf('django.db.models.fields.CharField')(max_length=255, blank=True)),
    58             ('organisation', orm['registration.Registration:organisation']),
    39             ('occupation', self.gf('django.db.models.fields.CharField')(max_length=255, blank=True)),
    59             ('occupation', orm['registration.Registration:occupation']),
    40             ('city', self.gf('django.db.models.fields.CharField')(max_length=255, blank=True)),
    60             ('city', orm['registration.Registration:city']),
    41             ('postcode', self.gf('django.db.models.fields.CharField')(max_length=255, blank=True)),
    61             ('postcode', orm['registration.Registration:postcode']),
    42             ('phone_num', self.gf('django.db.models.fields.CharField')(max_length=14, blank=True)),
    62             ('phone_num', orm['registration.Registration:phone_num']),
    43             ('tshirt', self.gf('django.db.models.fields.CharField')(max_length=3)),
    63             ('tshirt', orm['registration.Registration:tshirt']),
    44             ('conference', self.gf('django.db.models.fields.BooleanField')(default=False)),
    64             ('conference', orm['registration.Registration:conference']),
    45             ('tutorial', self.gf('django.db.models.fields.BooleanField')(default=False)),
    65             ('tutorial', orm['registration.Registration:tutorial']),
    46             ('sprint', self.gf('django.db.models.fields.BooleanField')(default=False)),
    66             ('sprint', orm['registration.Registration:sprint']),
    47             ('final_conference', self.gf('django.db.models.fields.BooleanField')(default=False)),
    67             ('final_conference', orm['registration.Registration:final_conference']),
    48             ('final_tutorial', self.gf('django.db.models.fields.BooleanField')(default=False)),
    68             ('final_tutorial', orm['registration.Registration:final_tutorial']),
    49             ('final_sprint', self.gf('django.db.models.fields.BooleanField')(default=False)),
    69             ('final_sprint', orm['registration.Registration:final_sprint']),
    50             ('allow_contact', self.gf('django.db.models.fields.BooleanField')(default=False)),
    70             ('allow_contact', orm['registration.Registration:allow_contact']),
    51             ('submitted', self.gf('django.db.models.fields.DateTimeField')(auto_now_add=True, blank=True)),
    71             ('submitted', orm['registration.Registration:submitted']),
    52             ('last_mod', self.gf('django.db.models.fields.DateTimeField')(auto_now=True, blank=True)),
    72             ('last_mod', orm['registration.Registration:last_mod']),
    53         ))
    73         ))
    54         db.send_create_signal('registration', ['Registration'])
    74         db.send_create_signal('registration', ['Registration'])
    55 
    75         
    56         # Adding model 'Payment'
    76     
    57         db.create_table('registration_payment', (
    77     
    58             ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
       
    59             ('scope', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['base.Event'])),
       
    60             ('user', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'])),
       
    61             ('confirmed', self.gf('django.db.models.fields.BooleanField')(default=False)),
       
    62             ('type', self.gf('django.db.models.fields.CharField')(max_length=25, null=True, blank=True)),
       
    63             ('details', self.gf('django.db.models.fields.CharField')(max_length=255, null=True, blank=True)),
       
    64         ))
       
    65         db.send_create_signal('registration', ['Payment'])
       
    66 
       
    67 
       
    68     def backwards(self, orm):
    78     def backwards(self, orm):
    69         
    79         
    70         # Deleting model 'Wifi'
    80         # Deleting model 'Wifi'
    71         db.delete_table('registration_wifi')
    81         db.delete_table('registration_wifi')
    72 
    82         
    73         # Deleting model 'Accommodation'
    83         # Deleting model 'Accommodation'
    74         db.delete_table('registration_accommodation')
    84         db.delete_table('registration_accommodation')
    75 
    85         
       
    86         # Deleting model 'Payment'
       
    87         db.delete_table('registration_payment')
       
    88         
    76         # Deleting model 'Registration'
    89         # Deleting model 'Registration'
    77         db.delete_table('registration_registration')
    90         db.delete_table('registration_registration')
    78 
    91         
    79         # Deleting model 'Payment'
    92     
    80         db.delete_table('registration_payment')
    93     
    81 
       
    82 
       
    83     models = {
    94     models = {
    84         'auth.group': {
    95         'auth.group': {
    85             'Meta': {'object_name': 'Group'},
       
    86             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
    96             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
    87             'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
    97             'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
    88             'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
    98             'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
    89         },
    99         },
    90         'auth.permission': {
   100         'auth.permission': {
    91             'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
   101             'Meta': {'unique_together': "(('content_type', 'codename'),)"},
    92             'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
   102             'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
    93             'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
   103             'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
    94             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   104             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
    95             'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
   105             'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
    96         },
   106         },
    97         'auth.user': {
   107         'auth.user': {
    98             'Meta': {'object_name': 'User'},
       
    99             'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
   108             'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
   100             'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
   109             'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
   101             'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
   110             'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
   102             'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
   111             'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
   103             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   112             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   104             'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
   113             'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True', 'blank': 'True'}),
   105             'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
   114             'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   106             'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
   115             'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   107             'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
   116             'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
   108             'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
   117             'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
   109             'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
   118             'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
   110             'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
   119             'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
   111             'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
   120             'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
   112         },
   121         },
   113         'base.event': {
   122         'base.event': {
   114             'Meta': {'object_name': 'Event'},
       
   115             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   123             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   116             'name': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
   124             'name': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
   117             'scope': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
   125             'scope': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
   118             'status': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
   126             'status': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
   119             'turn': ('django.db.models.fields.CharField', [], {'max_length': '255'})
   127             'turn': ('django.db.models.fields.CharField', [], {'max_length': '255'})
   120         },
   128         },
   121         'contenttypes.contenttype': {
   129         'contenttypes.contenttype': {
   122             'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
   130             'Meta': {'unique_together': "(('app_label', 'model'),)", 'db_table': "'django_content_type'"},
   123             'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
   131             'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
   124             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   132             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   125             'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
   133             'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
   126             'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
   134             'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
   127         },
   135         },
   128         'registration.accommodation': {
   136         'registration.accommodation': {
   129             'Meta': {'object_name': 'Accommodation'},
       
   130             'accommodation_days': ('django.db.models.fields.IntegerField', [], {'default': '0', 'blank': 'True'}),
   137             'accommodation_days': ('django.db.models.fields.IntegerField', [], {'default': '0', 'blank': 'True'}),
   131             'accommodation_required': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
   138             'accommodation_on_1st': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
       
   139             'accommodation_on_2nd': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
       
   140             'accommodation_on_3rd': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
       
   141             'accommodation_on_4th': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
       
   142             'accommodation_on_5th': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
       
   143             'accommodation_on_6th': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
       
   144             'accommodation_required': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   132             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   145             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   133             'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
   146             'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
   134             'sex': ('django.db.models.fields.CharField', [], {'max_length': '50', 'null': 'True', 'blank': 'True'}),
   147             'sex': ('django.db.models.fields.CharField', [], {'max_length': '50', 'null': 'True', 'blank': 'True'}),
   135             'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
   148             'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
   136         },
   149         },
   137         'registration.payment': {
   150         'registration.payment': {
   138             'Meta': {'object_name': 'Payment'},
   151             'acco_confirmed': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   139             'confirmed': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
   152             'acco_confirmed_mail': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
       
   153             'confirmed': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
       
   154             'confirmed_mail': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
       
   155             'date_confirmed': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
   140             'details': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}),
   156             'details': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}),
   141             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   157             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   142             'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
   158             'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
   143             'type': ('django.db.models.fields.CharField', [], {'max_length': '25', 'null': 'True', 'blank': 'True'}),
   159             'type': ('django.db.models.fields.CharField', [], {'max_length': '25', 'null': 'True', 'blank': 'True'}),
   144             'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
   160             'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
   145         },
   161         },
   146         'registration.registration': {
   162         'registration.registration': {
   147             'Meta': {'object_name': 'Registration'},
   163             'allow_contact': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   148             'allow_contact': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
       
   149             'city': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
   164             'city': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
   150             'conference': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
   165             'conference': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   151             'final_conference': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
   166             'final_conference': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   152             'final_sprint': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
   167             'final_sprint': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   153             'final_tutorial': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
   168             'final_tutorial': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   154             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   169             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   155             'last_mod': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'blank': 'True'}),
   170             'last_mod': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'blank': 'True'}),
   156             'occupation': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
   171             'occupation': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
   157             'organisation': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
   172             'organisation': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
   158             'phone_num': ('django.db.models.fields.CharField', [], {'max_length': '14', 'blank': 'True'}),
   173             'phone_num': ('django.db.models.fields.CharField', [], {'max_length': '14', 'blank': 'True'}),
   159             'postcode': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
   174             'postcode': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
   160             'registrant': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}),
   175             'registrant': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}),
   161             'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
   176             'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
   162             'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'db_index': 'True'}),
   177             'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'db_index': 'True'}),
   163             'sprint': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
   178             'sprint': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
   164             'submitted': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
   179             'submitted': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
   165             'tshirt': ('django.db.models.fields.CharField', [], {'max_length': '3'}),
   180             'tshirt': ('django.db.models.fields.CharField', [], {'max_length': '3'}),
   166             'tutorial': ('django.db.models.fields.BooleanField', [], {'default': 'False'})
   181             'tutorial': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'})
   167         },
   182         },
   168         'registration.wifi': {
   183         'registration.wifi': {
   169             'Meta': {'object_name': 'Wifi'},
       
   170             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   184             'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
   171             'registration_id': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}),
   185             'registration_id': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}),
   172             'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
   186             'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
   173             'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}),
   187             'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}),
   174             'wifi': ('django.db.models.fields.CharField', [], {'max_length': '50'})
   188             'wifi': ('django.db.models.fields.CharField', [], {'max_length': '50'})
   175         }
   189         }
   176     }
   190     }
   177 
   191     
   178     complete_apps = ['registration']
   192     complete_apps = ['registration']