0021_auto_20150716_1408.py
24 lines
| 551 B
| text/x-python
|
PythonLexer
neko259
|
r1242 | # -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||||
from django.db import models, migrations | ||||
class Migration(migrations.Migration): | ||||
dependencies = [ | ||||
('boards', '0020_merge'), | ||||
] | ||||
operations = [ | ||||
migrations.RemoveField( | ||||
model_name='post', | ||||
name='signature', | ||||
), | ||||
migrations.AddField( | ||||
model_name='signature', | ||||
name='global_id', | ||||
field=models.ForeignKey(default=0, to='boards.GlobalId'), | ||||
preserve_default=False, | ||||
), | ||||
] | ||||