saveload_backend/model/migrations/0006_study_templates_indexe...

26 lines
650 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-01-28 09:39
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('model', '0005_chart_indexes'),
]
operations = [
migrations.AlterField(
model_name='studytemplate',
name='ownerId',
field=models.CharField(db_index=True, max_length=200),
),
migrations.AlterField(
model_name='studytemplate',
name='ownerSource',
field=models.CharField(db_index=True, max_length=200),
),
]