mirror of
https://github.com/evennia/evennia.git
synced 2026-04-07 00:45:22 +02:00
One needs to turn off all imports of typeclasses in __init__ or django will create migrations for them. This might be interesting for the future but not for development.
This commit is contained in:
parent
749715a193
commit
969b947ba0
8 changed files with 50 additions and 45 deletions
|
|
@ -7,7 +7,9 @@ Also, the initiated object manager is available as src.scripts.manager.
|
|||
|
||||
"""
|
||||
|
||||
from src.scripts.scripts import *
|
||||
# Note - we MUST NOT import src.scripts.scripts here, or
|
||||
# proxy models will fall under Django migrations.
|
||||
#from src.scripts.scripts import *
|
||||
from src.scripts.models import ScriptDB
|
||||
|
||||
manager = ScriptDB.objects
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue