diff --git a/apps/bootstrap/migrations/0001_initial.py b/apps/bootstrap/migrations/0001_initial.py new file mode 100644 index 0000000000..6d1dd6f14d --- /dev/null +++ b/apps/bootstrap/migrations/0001_initial.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +import datetime +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + + +class Migration(SchemaMigration): + + def forwards(self, orm): + # Adding model 'BootstrapSetup' + db.create_table('bootstrap_bootstrapsetup', ( + ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), + ('name', self.gf('django.db.models.fields.CharField')(unique=True, max_length=128)), + ('description', self.gf('django.db.models.fields.TextField')(blank=True)), + ('fixture', self.gf('django.db.models.fields.TextField')()), + )) + db.send_create_signal('bootstrap', ['BootstrapSetup']) + + + def backwards(self, orm): + # Deleting model 'BootstrapSetup' + db.delete_table('bootstrap_bootstrapsetup') + + + models = { + 'bootstrap.bootstrapsetup': { + 'Meta': {'object_name': 'BootstrapSetup'}, + 'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}), + 'fixture': ('django.db.models.fields.TextField', [], {}), + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '128'}) + } + } + + complete_apps = ['bootstrap'] \ No newline at end of file diff --git a/apps/bootstrap/migrations/__init__.py b/apps/bootstrap/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2