mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 09:46:32 +01:00
Fixed a migration issue with PostGreSQL.
This commit is contained in:
parent
b99833e8fc
commit
39b69dcdc2
9 changed files with 69 additions and 31 deletions
|
|
@ -78,4 +78,4 @@ class Migration(SchemaMigration):
|
|||
}
|
||||
}
|
||||
|
||||
complete_apps = ['typeclasses']
|
||||
complete_apps = ['typeclasses']
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@ from django.db import models
|
|||
|
||||
class Migration(SchemaMigration):
|
||||
|
||||
depends_on = (("scripts", "0014_create_db_liteattributes_db_tags"),
|
||||
("objects", "0022_add_db_liteattributes_db_tags"),
|
||||
("players", "0025_auto__add_db_liteattributes_db_tags"))
|
||||
|
||||
def forwards(self, orm):
|
||||
# Deleting model 'LiteAttribute'
|
||||
db.delete_table(u'typeclasses_liteattribute')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue