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