project/scipycon/registration/migrations/0004_auto__chg_field_payment_date_confirmed.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 02 Dec 2010 17:38:44 +0530
changeset 329 9e2fc4b26a26
permissions -rw-r--r--
Push all the south migrations.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
329
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     1
# encoding: utf-8
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     2
import datetime
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     3
from south.db import db
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     4
from south.v2 import SchemaMigration
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     5
from django.db import models
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     6
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     7
class Migration(SchemaMigration):
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     8
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     9
    def forwards(self, orm):
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    10
        
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    11
        # Changing field 'Payment.date_confirmed'
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    12
        db.alter_column('registration_payment', 'date_confirmed', self.gf('django.db.models.fields.DateTimeField')(null=True))
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    13
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    14
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    15
    def backwards(self, orm):
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    16
        
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    17
        # Changing field 'Payment.date_confirmed'
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    18
        db.alter_column('registration_payment', 'date_confirmed', self.gf('django.db.models.fields.DateTimeField')())
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    19
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    20
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    21
    models = {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    22
        'auth.group': {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    23
            'Meta': {'object_name': 'Group'},
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    24
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    25
            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    26
            'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    27
        },
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    28
        'auth.permission': {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    29
            'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    30
            'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    31
            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    32
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    33
            'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    34
        },
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    35
        'auth.user': {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    36
            'Meta': {'object_name': 'User'},
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    37
            'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    38
            'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    39
            'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    40
            'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    41
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    42
            'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    43
            'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    44
            'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    45
            'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    46
            'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    47
            'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    48
            'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    49
            'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    50
        },
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    51
        'base.event': {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    52
            'Meta': {'object_name': 'Event'},
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    53
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    54
            'name': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    55
            'scope': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    56
            'status': ('django.db.models.fields.CharField', [], {'max_length': '255'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    57
            'turn': ('django.db.models.fields.CharField', [], {'max_length': '255'})
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    58
        },
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    59
        'contenttypes.contenttype': {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    60
            'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    61
            'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    62
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    63
            'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    64
            'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    65
        },
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    66
        'registration.accommodation': {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    67
            'Meta': {'object_name': 'Accommodation'},
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    68
            'accommodation_days': ('django.db.models.fields.IntegerField', [], {'default': '0', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    69
            'accommodation_required': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    70
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    71
            'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    72
            'sex': ('django.db.models.fields.CharField', [], {'max_length': '50', 'null': 'True', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    73
            'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    74
        },
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    75
        'registration.payment': {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    76
            'Meta': {'object_name': 'Payment'},
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    77
            'acco_confirmed': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    78
            'confirmed': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    79
            'date_confirmed': ('django.db.models.fields.DateTimeField', [], {'null': 'True', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    80
            'details': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    81
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    82
            'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    83
            'type': ('django.db.models.fields.CharField', [], {'max_length': '25', 'null': 'True', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    84
            'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    85
        },
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    86
        'registration.registration': {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    87
            'Meta': {'object_name': 'Registration'},
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    88
            'allow_contact': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    89
            'city': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    90
            'conference': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    91
            'final_conference': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    92
            'final_sprint': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    93
            'final_tutorial': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    94
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    95
            'last_mod': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    96
            'occupation': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    97
            'organisation': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    98
            'phone_num': ('django.db.models.fields.CharField', [], {'max_length': '14', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    99
            'postcode': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   100
            'registrant': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   101
            'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   102
            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'db_index': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   103
            'sprint': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   104
            'submitted': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   105
            'tshirt': ('django.db.models.fields.CharField', [], {'max_length': '3'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   106
            'tutorial': ('django.db.models.fields.BooleanField', [], {'default': 'False'})
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   107
        },
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   108
        'registration.wifi': {
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   109
            'Meta': {'object_name': 'Wifi'},
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   110
            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   111
            'registration_id': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   112
            'scope': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['base.Event']"}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   113
            'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}),
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   114
            'wifi': ('django.db.models.fields.CharField', [], {'max_length': '50'})
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   115
        }
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   116
    }
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   117
9e2fc4b26a26 Push all the south migrations.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   118
    complete_apps = ['registration']