Adding migrations for django1.8.
This commit is contained in:
parent
1a7a6b3fff
commit
b59e38caf5
6 changed files with 227 additions and 8 deletions
26
evennia/scripts/migrations/0007_auto_20150403_2339.py
Normal file
26
evennia/scripts/migrations/0007_auto_20150403_2339.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