54 lines
2.8 KiB
Python
54 lines
2.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
from south.utils import datetime_utils as datetime
|
|
from south.db import db
|
|
from south.v2 import SchemaMigration
|
|
from django.db import models
|
|
|
|
|
|
class Migration(SchemaMigration):
|
|
|
|
def forwards(self, orm):
|
|
# Adding M2M table for field document_types on 'SmartLink'
|
|
m2m_table_name = db.shorten_name(u'linking_smartlink_document_types')
|
|
db.create_table(m2m_table_name, (
|
|
('id', models.AutoField(verbose_name='ID', primary_key=True, auto_created=True)),
|
|
('smartlink', models.ForeignKey(orm[u'linking.smartlink'], null=False)),
|
|
('documenttype', models.ForeignKey(orm[u'documents.documenttype'], null=False))
|
|
))
|
|
db.create_unique(m2m_table_name, ['smartlink_id', 'documenttype_id'])
|
|
|
|
|
|
def backwards(self, orm):
|
|
# Removing M2M table for field document_types on 'SmartLink'
|
|
db.delete_table(db.shorten_name(u'linking_smartlink_document_types'))
|
|
|
|
|
|
models = {
|
|
u'documents.documenttype': {
|
|
'Meta': {'ordering': "['name']", 'object_name': 'DocumentType'},
|
|
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '32'}),
|
|
'ocr': ('django.db.models.fields.BooleanField', [], {'default': 'True'})
|
|
},
|
|
u'linking.smartlink': {
|
|
'Meta': {'object_name': 'SmartLink'},
|
|
'document_types': ('django.db.models.fields.related.ManyToManyField', [], {'to': u"orm['documents.DocumentType']", 'symmetrical': 'False'}),
|
|
'dynamic_title': ('django.db.models.fields.CharField', [], {'max_length': '96', 'blank': 'True'}),
|
|
'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
|
|
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'title': ('django.db.models.fields.CharField', [], {'max_length': '96'})
|
|
},
|
|
u'linking.smartlinkcondition': {
|
|
'Meta': {'object_name': 'SmartLinkCondition'},
|
|
'enabled': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
|
|
'expression': ('django.db.models.fields.TextField', [], {}),
|
|
'foreign_document_data': ('django.db.models.fields.CharField', [], {'max_length': '32'}),
|
|
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'inclusion': ('django.db.models.fields.CharField', [], {'default': "u'&'", 'max_length': '16'}),
|
|
'negated': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
|
|
'operator': ('django.db.models.fields.CharField', [], {'max_length': '16'}),
|
|
'smart_link': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['linking.SmartLink']"})
|
|
}
|
|
}
|
|
|
|
complete_apps = ['linking'] |