mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 17:56:32 +01:00
Fixed typo data-migration for new attribute storate type.
This commit is contained in:
parent
a32aebaa0e
commit
370b7ca86c
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ class Migration(DataMigration):
|
|||
|
||||
def forwards(self, orm):
|
||||
"Write your forwards methods here."
|
||||
for attr in orm.ScriptAttribute.objects.all():
|
||||
for attr in orm.ScriptAttribute.objects.all():
|
||||
attr.value = pickle.loads(to_str(attr.db_value))
|
||||
|
||||
def backwards(self, orm):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue