170 lines
12 KiB
Python
170 lines
12 KiB
Python
# -*- coding: utf-8 -*-
|
|
import datetime
|
|
from south.db import db
|
|
from south.v2 import SchemaMigration
|
|
from django.db import models
|
|
|
|
|
|
class Migration(SchemaMigration):
|
|
|
|
def forwards(self, orm):
|
|
# Adding model 'DocumentQueue'
|
|
db.create_table('ocr_documentqueue', (
|
|
('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
|
|
('name', self.gf('django.db.models.fields.CharField')(unique=True, max_length=64)),
|
|
('label', self.gf('django.db.models.fields.CharField')(max_length=64)),
|
|
('state', self.gf('django.db.models.fields.CharField')(default='a', max_length=4)),
|
|
))
|
|
db.send_create_signal('ocr', ['DocumentQueue'])
|
|
|
|
# Adding model 'QueueDocument'
|
|
db.create_table('ocr_queuedocument', (
|
|
('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
|
|
('document_queue', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['ocr.DocumentQueue'])),
|
|
('document', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['documents.Document'])),
|
|
('datetime_submitted', self.gf('django.db.models.fields.DateTimeField')(auto_now_add=True, db_index=True, blank=True)),
|
|
('delay', self.gf('django.db.models.fields.BooleanField')(default=False)),
|
|
('state', self.gf('django.db.models.fields.CharField')(default='p', max_length=4)),
|
|
('result', self.gf('django.db.models.fields.TextField')(null=True, blank=True)),
|
|
('node_name', self.gf('django.db.models.fields.CharField')(max_length=32, null=True, blank=True)),
|
|
))
|
|
db.send_create_signal('ocr', ['QueueDocument'])
|
|
|
|
# Adding model 'QueueTransformation'
|
|
db.create_table('ocr_queuetransformation', (
|
|
('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
|
|
('content_type', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['contenttypes.ContentType'])),
|
|
('object_id', self.gf('django.db.models.fields.PositiveIntegerField')()),
|
|
('order', self.gf('django.db.models.fields.PositiveIntegerField')(default=0, null=True, db_index=True, blank=True)),
|
|
('transformation', self.gf('django.db.models.fields.CharField')(max_length=128)),
|
|
('arguments', self.gf('django.db.models.fields.TextField')(null=True, blank=True)),
|
|
))
|
|
db.send_create_signal('ocr', ['QueueTransformation'])
|
|
|
|
|
|
def backwards(self, orm):
|
|
# Deleting model 'DocumentQueue'
|
|
db.delete_table('ocr_documentqueue')
|
|
|
|
# Deleting model 'QueueDocument'
|
|
db.delete_table('ocr_queuedocument')
|
|
|
|
# Deleting model 'QueueTransformation'
|
|
db.delete_table('ocr_queuetransformation')
|
|
|
|
|
|
models = {
|
|
'auth.group': {
|
|
'Meta': {'object_name': 'Group'},
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
|
|
'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
|
|
},
|
|
'auth.permission': {
|
|
'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
|
|
'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
|
|
'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
|
|
},
|
|
'auth.user': {
|
|
'Meta': {'object_name': 'User'},
|
|
'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
|
|
'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
|
|
'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
|
|
'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
|
|
'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
|
|
'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
|
|
'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
|
|
'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
|
|
'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
|
|
'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
|
|
'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
|
|
},
|
|
'comments.comment': {
|
|
'Meta': {'ordering': "('submit_date',)", 'object_name': 'Comment', 'db_table': "'django_comments'"},
|
|
'comment': ('django.db.models.fields.TextField', [], {'max_length': '3000'}),
|
|
'content_type': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'content_type_set_for_comment'", 'to': "orm['contenttypes.ContentType']"}),
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'ip_address': ('django.db.models.fields.IPAddressField', [], {'max_length': '15', 'null': 'True', 'blank': 'True'}),
|
|
'is_public': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
|
|
'is_removed': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
|
|
'object_pk': ('django.db.models.fields.TextField', [], {}),
|
|
'site': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['sites.Site']"}),
|
|
'submit_date': ('django.db.models.fields.DateTimeField', [], {'default': 'None'}),
|
|
'user': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'comment_comments'", 'null': 'True', 'to': "orm['auth.User']"}),
|
|
'user_email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
|
|
'user_name': ('django.db.models.fields.CharField', [], {'max_length': '50', 'blank': 'True'}),
|
|
'user_url': ('django.db.models.fields.URLField', [], {'max_length': '200', 'blank': 'True'})
|
|
},
|
|
'contenttypes.contenttype': {
|
|
'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
|
|
'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
|
|
'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
|
|
},
|
|
'documents.document': {
|
|
'Meta': {'ordering': "['-date_added']", 'object_name': 'Document'},
|
|
'date_added': ('django.db.models.fields.DateTimeField', [], {'db_index': 'True'}),
|
|
'description': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
|
|
'document_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['documents.DocumentType']", 'null': 'True', 'blank': 'True'}),
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'uuid': ('django.db.models.fields.CharField', [], {'max_length': '48', 'blank': 'True'})
|
|
},
|
|
'documents.documenttype': {
|
|
'Meta': {'ordering': "['name']", 'object_name': 'DocumentType'},
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'name': ('django.db.models.fields.CharField', [], {'max_length': '32'})
|
|
},
|
|
'ocr.documentqueue': {
|
|
'Meta': {'object_name': 'DocumentQueue'},
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'label': ('django.db.models.fields.CharField', [], {'max_length': '64'}),
|
|
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '64'}),
|
|
'state': ('django.db.models.fields.CharField', [], {'default': "'a'", 'max_length': '4'})
|
|
},
|
|
'ocr.queuedocument': {
|
|
'Meta': {'ordering': "('datetime_submitted',)", 'object_name': 'QueueDocument'},
|
|
'datetime_submitted': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'db_index': 'True', 'blank': 'True'}),
|
|
'delay': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
|
|
'document': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['documents.Document']"}),
|
|
'document_queue': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['ocr.DocumentQueue']"}),
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'node_name': ('django.db.models.fields.CharField', [], {'max_length': '32', 'null': 'True', 'blank': 'True'}),
|
|
'result': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
|
|
'state': ('django.db.models.fields.CharField', [], {'default': "'p'", 'max_length': '4'})
|
|
},
|
|
'ocr.queuetransformation': {
|
|
'Meta': {'ordering': "('order',)", 'object_name': 'QueueTransformation'},
|
|
'arguments': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
|
|
'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'object_id': ('django.db.models.fields.PositiveIntegerField', [], {}),
|
|
'order': ('django.db.models.fields.PositiveIntegerField', [], {'default': '0', 'null': 'True', 'db_index': 'True', 'blank': 'True'}),
|
|
'transformation': ('django.db.models.fields.CharField', [], {'max_length': '128'})
|
|
},
|
|
'sites.site': {
|
|
'Meta': {'ordering': "('domain',)", 'object_name': 'Site', 'db_table': "'django_site'"},
|
|
'domain': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
|
|
},
|
|
'taggit.tag': {
|
|
'Meta': {'object_name': 'Tag'},
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'name': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
|
|
'slug': ('django.db.models.fields.SlugField', [], {'unique': 'True', 'max_length': '100'})
|
|
},
|
|
'taggit.taggeditem': {
|
|
'Meta': {'object_name': 'TaggedItem'},
|
|
'content_type': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'taggit_taggeditem_tagged_items'", 'to': "orm['contenttypes.ContentType']"}),
|
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
|
'object_id': ('django.db.models.fields.IntegerField', [], {'db_index': 'True'}),
|
|
'tag': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'taggit_taggeditem_items'", 'to': "orm['taggit.Tag']"})
|
|
}
|
|
}
|
|
|
|
complete_apps = ['ocr'] |