Cleanup of the migration history
This commit is contained in:
parent
b9648e6cf4
commit
fa18aca371
6 changed files with 3 additions and 194 deletions
|
|
@ -12,7 +12,7 @@ def convert_defaults(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('comms', '0004_defaultchannel'),
|
||||
('comms', '0003_auto_20140917_0756'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('comms', '0003_auto_20140917_0756'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='DefaultChannel',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('comms.channeldb',),
|
||||
),
|
||||
]
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('scripts', '0002_checksessions_donothing_script_scriptbase_store_validatechannelhandler_validateidmappercache_validat'),
|
||||
('players', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='BotStarter',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.script',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='DefaultPlayer',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('players.playerdb',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='DefaultGuest',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('players.defaultplayer',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Bot',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('players.defaultplayer',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='IMC2Bot',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('players.bot',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='IRCBot',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('players.bot',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='RSSBot',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('players.bot',),
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='playerdb',
|
||||
options={'verbose_name': 'Player'},
|
||||
),
|
||||
]
|
||||
|
|
@ -12,7 +12,7 @@ def convert_defaults(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('players', '0002_auto_20150109_0913'),
|
||||
('players', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
|
@ -15,7 +15,7 @@ def convert_defaults(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('scripts', '0002_checksessions_donothing_script_scriptbase_store_validatechannelhandler_validateidmappercache_validat'),
|
||||
('scripts', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
|
@ -1,86 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('scripts', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ScriptBase',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.scriptdb',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Script',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.scriptbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='CheckSessions',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.script',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='DoNothing',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.script',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Store',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.script',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='ValidateChannelHandler',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.script',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='ValidateIdmapperCache',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.script',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='ValidateScripts',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('scripts.script',),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue