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:
parent
8bd8193ab9
commit
230d73cfa0
16 changed files with 2941 additions and 463 deletions
|
|
@ -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'])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue