2018-03-18 01:14:45 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.7 on 2018-03-18 01:13
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
dependencies = [("preferences", "0028_assooption_description")]
|
2018-03-18 01:14:45 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="assooption",
|
|
|
|
name="description",
|
2018-03-18 01:14:45 +00:00
|
|
|
field=models.TextField(blank=True, null=True),
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
2018-03-18 01:14:45 +00:00
|
|
|
]
|