1
|
# -*- coding: utf-8 -*-
|
2
|
from __future__ import unicode_literals
|
3
|
|
4
|
from django.db import models, migrations
|
5
|
import ckeditor.fields
|
6
|
|
7
|
|
8
|
class Migration(migrations.Migration):
|
9
|
|
10
|
dependencies = [
|
11
|
('corbo', '0002_auto_20150127_2221'),
|
12
|
]
|
13
|
|
14
|
operations = [
|
15
|
migrations.AlterField(
|
16
|
model_name='announce',
|
17
|
name='text',
|
18
|
field=ckeditor.fields.RichTextField(verbose_name='Content'),
|
19
|
preserve_default=True,
|
20
|
),
|
21
|
migrations.AlterUniqueTogether(
|
22
|
name='broadcast',
|
23
|
unique_together=set([('announce', 'channel')]),
|
24
|
),
|
25
|
]
|