Add migrations to django 1.11.
This commit is contained in:
parent
e2de340f7d
commit
c60555b70a
9 changed files with 206 additions and 15 deletions
20
evennia/help/migrations/0002_auto_20170606_1731.py
Normal file
20
evennia/help/migrations/0002_auto_20170606_1731.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.2 on 2017-06-06 17:31
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('help', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='helpentry',
|
||||
name='db_tags',
|
||||
field=models.ManyToManyField(blank=True, help_text=b'tags on this object. Tags are simple string markers to identify, group and alias objects.', to='typeclasses.Tag'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue