Added migrations for the 1.8+ change
This commit is contained in:
parent
ee1ec3979c
commit
6644effef8
4 changed files with 214 additions and 0 deletions
26
evennia/scripts/migrations/0007_auto_20150403_2043.py
Normal file
26
evennia/scripts/migrations/0007_auto_20150403_2043.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('scripts', '0006_auto_20150310_2249'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='DefaultScript',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='DoNothing',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='ScriptBase',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='Store',
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue