35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.22 on 2020-05-13 00:01
|
|
from __future__ import unicode_literals
|
|
|
|
import django.core.serializers.json
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import document.fulltext
|
|
import oxdjango.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('document', '0011_jsonfield'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Page',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('created', models.DateTimeField(auto_now_add=True)),
|
|
('modified', models.DateTimeField(auto_now=True)),
|
|
('page', models.IntegerField(default=1)),
|
|
('data', oxdjango.fields.JSONField(default=dict, editable=False, encoder=django.core.serializers.json.DjangoJSONEncoder)),
|
|
],
|
|
bases=(models.Model, document.fulltext.FulltextPageMixin),
|
|
),
|
|
migrations.AddField(
|
|
model_name='page',
|
|
name='document',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='pages_set', to='document.Document'),
|
|
),
|
|
]
|