Added base migrations
This commit is contained in:
parent
132eca7c8f
commit
f075d4aec1
5 changed files with 260 additions and 0 deletions
23
evennia/comms/migrations/0004_defaultchannel.py
Normal file
23
evennia/comms/migrations/0004_defaultchannel.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# -*- 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',),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue