mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
21 lines
356 B
Python
21 lines
356 B
Python
![]() |
|
||
|
from south.db import db
|
||
|
from django.db import models
|
||
|
from apps.opml_import.models import *
|
||
|
|
||
|
class Migration:
|
||
|
|
||
|
def forwards(self, orm):
|
||
|
"Write your forwards migration here"
|
||
|
|
||
|
|
||
|
def backwards(self, orm):
|
||
|
"Write your backwards migration here"
|
||
|
|
||
|
|
||
|
models = {
|
||
|
|
||
|
}
|
||
|
|
||
|
complete_apps = ['opml_import']
|