Migrations work under sqlite3, both from latest dev, from new install and from trunk. There might be some consistency issues though (it seems the character list is not properly migrated), so more testing is required.

This commit is contained in:
Griatch 2013-04-13 23:50:33 +02:00
parent 8bd8193ab9
commit 230d73cfa0
16 changed files with 2941 additions and 463 deletions

View file

@ -7,7 +7,7 @@ from django.db import models
class Migration(SchemaMigration):
def forwards(self, orm):
# Adding index on 'ObjectDB', fields ['db_key']
db.create_index('objects_objectdb', ['db_key'])
@ -19,7 +19,7 @@ class Migration(SchemaMigration):
def backwards(self, orm):
# Removing index on 'ObjAttribute', fields ['db_key']
db.delete_index('objects_objattribute', ['db_key'])