saveload_backend/model/migrations/0007_drawingtemplate.py

27 lines
835 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2020-07-14 09:28
from __future__ import unicode_literals
from django.db import migrations, models
import jsonfield.fields
class Migration(migrations.Migration):
dependencies = [
('model', '0006_study_templates_indexes'),
]
operations = [
migrations.CreateModel(
name='DrawingTemplate',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('ownerSource', models.CharField(db_index=True, max_length=200)),
('ownerId', models.CharField(db_index=True, max_length=200)),
('name', models.CharField(max_length=200)),
('content', jsonfield.fields.JSONField()),
],
),
]