Skip to content

Commit

Permalink
Update migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher committed Nov 6, 2018
1 parent a1bd6a4 commit 57c7b57
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 31 deletions.

This file was deleted.

25 changes: 25 additions & 0 deletions readthedocs/projects/migrations/0032_add_htmlfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.16 on 2018-11-06 18:09
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('projects', '0031_add_modified_date_importedfile'),
]

operations = [
migrations.CreateModel(
name='HTMLFile',
fields=[
],
options={
'proxy': True,
'indexes': [],
},
bases=('projects.importedfile',),
),
]

0 comments on commit 57c7b57

Please sign in to comment.