增加修改数据库表名 migration

This commit is contained in:
virusdefender
2015-10-08 11:25:35 +08:00
parent 163ae0ae53
commit 779a8e9e40
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('problem', '0008_auto_20150922_1702'),
]
operations = [
migrations.AlterModelTable(
name='problem',
table='problem',
),
]