mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-05-05 20:14:45 +00:00
Missing migrations for testapp
This commit is contained in:
parent
1e5f02cb5c
commit
c8db50518f
2 changed files with 27 additions and 0 deletions
27
testapp/migrations/0001_initial.py
Normal file
27
testapp/migrations/0001_initial.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2017-05-04 20:21
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import markdownx.models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='MyModel',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('markdownx_field1', markdownx.models.MarkdownxField()),
|
||||
('markdownx_field2', markdownx.models.MarkdownxField()),
|
||||
('textfield1', models.TextField()),
|
||||
('textfield2', models.TextField()),
|
||||
],
|
||||
),
|
||||
]
|
||||
0
testapp/migrations/__init__.py
Normal file
0
testapp/migrations/__init__.py
Normal file
Loading…
Reference in a new issue