mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 12:37:16 +02:00
Added a last fixed migration
This commit is contained in:
parent
fa18aca371
commit
31d7bb658d
1 changed files with 86 additions and 0 deletions
|
|
@ -0,0 +1,86 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('scripts', '0002_auto_20150118_1625'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ScriptBase',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.scriptdb',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='DefaultScript',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.scriptbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='DoNothing',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.defaultscript',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='CheckSessions',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.defaultscript',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Store',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.defaultscript',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='ValidateChannelHandler',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.defaultscript',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='ValidateIdmapperCache',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.defaultscript',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='ValidateScripts',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.defaultscript',),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue