Skip to content

Commit 57c7b57

Browse files
committed
Update migration
1 parent a1bd6a4 commit 57c7b57

File tree

2 files changed

+25
-31
lines changed

2 files changed

+25
-31
lines changed

readthedocs/projects/migrations/0028_add_htmlfile_and_modified_date.py

Lines changed: 0 additions & 31 deletions
This file was deleted.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.16 on 2018-11-06 18:09
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('projects', '0031_add_modified_date_importedfile'),
12+
]
13+
14+
operations = [
15+
migrations.CreateModel(
16+
name='HTMLFile',
17+
fields=[
18+
],
19+
options={
20+
'proxy': True,
21+
'indexes': [],
22+
},
23+
bases=('projects.importedfile',),
24+
),
25+
]

0 commit comments

Comments
 (0)