##// END OF EJS Templates
Moved signature set to global id, not post
Moved signature set to global id, not post

File last commit:

r1242:b72fba6e decentral
r1242:b72fba6e decentral
Show More
0021_auto_20150716_1408.py
24 lines | 551 B | text/x-python | PythonLexer
/ boards / migrations / 0021_auto_20150716_1408.py
# -*- 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,
),
]