Commit 52c654916673def4a21465162bb7ad1b076cb35b
1 parent
e8118c7d
Exists in
master
and in
13 other branches
Adding api initial migrations
Showing
2 changed files
with
20 additions
and
0 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,20 @@ |
| 1 | +# -*- coding: utf-8 -*- | |
| 2 | +import datetime | |
| 3 | +from south.db import db | |
| 4 | +from south.v2 import SchemaMigration | |
| 5 | +from django.db import models | |
| 6 | + | |
| 7 | + | |
| 8 | +class Migration(SchemaMigration): | |
| 9 | + | |
| 10 | + def forwards(self, orm): | |
| 11 | + pass | |
| 12 | + | |
| 13 | + def backwards(self, orm): | |
| 14 | + pass | |
| 15 | + | |
| 16 | + models = { | |
| 17 | + | |
| 18 | + } | |
| 19 | + | |
| 20 | + complete_apps = ['api'] | |
| 0 | 21 | \ No newline at end of file | ... | ... |