Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.

Commit 00b3d6f

Browse files
committed
Add migrations for the demo app.
1 parent aa0e0f1 commit 00b3d6f

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.6 on 2017-10-25 07:35
3+
from __future__ import unicode_literals
4+
5+
import ckeditor.fields
6+
import ckeditor_uploader.fields
7+
from django.db import migrations, models
8+
9+
10+
class Migration(migrations.Migration):
11+
12+
initial = True
13+
14+
dependencies = [
15+
]
16+
17+
operations = [
18+
migrations.CreateModel(
19+
name='ExampleModel',
20+
fields=[
21+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
22+
('content', ckeditor_uploader.fields.RichTextUploadingField()),
23+
],
24+
),
25+
migrations.CreateModel(
26+
name='ExampleNonUploadModel',
27+
fields=[
28+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
29+
('content', ckeditor.fields.RichTextField()),
30+
],
31+
),
32+
]

ckeditor_demo/demo_application/migrations/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)