##// END OF EJS Templates
Delete global ID when deleting post. Cache model's content XML tag into global ID
Delete global ID when deleting post. Cache model's content XML tag into global ID

File last commit:

r1320:c450e81f merge decentral
r1520:ecaafe92 decentral
Show More
0026_auto_20150830_2006.py
48 lines | 1.6 KiB | text/x-python | PythonLexer
/ boards / migrations / 0026_auto_20150830_2006.py
neko259
Merged with default
r1320 # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('boards', '0025_auto_20150825_2049'),
]
operations = [
migrations.CreateModel(
name='GlobalId',
fields=[
('id', models.AutoField(serialize=False, verbose_name='ID', primary_key=True, auto_created=True)),
('key', models.TextField()),
('key_type', models.TextField()),
('local_id', models.IntegerField()),
],
),
migrations.CreateModel(
name='KeyPair',
fields=[
('id', models.AutoField(serialize=False, verbose_name='ID', primary_key=True, auto_created=True)),
('public_key', models.TextField()),
('private_key', models.TextField()),
('key_type', models.TextField()),
('primary', models.BooleanField(default=False)),
],
),
migrations.CreateModel(
name='Signature',
fields=[
('id', models.AutoField(serialize=False, verbose_name='ID', primary_key=True, auto_created=True)),
('key_type', models.TextField()),
('key', models.TextField()),
('signature', models.TextField()),
('global_id', models.ForeignKey(to='boards.GlobalId')),
],
),
migrations.AddField(
model_name='post',
name='global_id',
field=models.OneToOneField(to='boards.GlobalId', null=True, blank=True),
),
]