##// END OF EJS Templates
Show localized tags under the proper letter section in all tags list. Cache localized tag name, not the whole view
Show localized tags under the proper letter section in all tags list. Cache localized tag name, not the whole view

File last commit:

r1320:c450e81f merge decentral
r1892:0808e889 default
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),
),
]