... and another one.
This commit is contained in:
parent
31d7bb658d
commit
5038d42438
1 changed files with 36 additions and 0 deletions
36
evennia/players/migrations/0003_auto_20150209_2234.py
Normal file
36
evennia/players/migrations/0003_auto_20150209_2234.py
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import models, migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('players', '0002_move_defaults'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='DefaultPlayer',
|
||||||
|
fields=[
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
'proxy': True,
|
||||||
|
},
|
||||||
|
bases=('players.playerdb',),
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='DefaultGuest',
|
||||||
|
fields=[
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
'proxy': True,
|
||||||
|
},
|
||||||
|
bases=('players.defaultplayer',),
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='playerdb',
|
||||||
|
options={'verbose_name': 'Player'},
|
||||||
|
),
|
||||||
|
]
|
||||||
Loading…
Add table
Add a link
Reference in a new issue