Fix workflow migration. See #665

- Legacy-Id: 3132
This commit is contained in:
Emilio A. Sánchez López 2011-05-18 06:46:52 +00:00
parent a142e89a87
commit 3628f5d501

View file

@ -78,14 +78,14 @@ class Migration:
# Adding model 'objectannotationtaghistoryentry'
db.create_table('ietfworkflows_objectannotationtaghistoryentry', (
('comment', orm['ietfworkflows.objectworkflowhistoryentry:comment']),
('person', orm['ietfworkflows.objectworkflowhistoryentry:person']),
('unsetted', orm['ietfworkflows.objectworkflowhistoryentry:unsetted']),
('content_type', orm['ietfworkflows.objectworkflowhistoryentry:content_type']),
('change_date', orm['ietfworkflows.objectworkflowhistoryentry:change_date']),
('setted', orm['ietfworkflows.objectworkflowhistoryentry:setted']),
('content_id', orm['ietfworkflows.objectworkflowhistoryentry:content_id']),
('id', orm['ietfworkflows.objectworkflowhistoryentry:id']),
('comment', orm['ietfworkflows.objectannotationtaghistoryentry:comment']),
('person', orm['ietfworkflows.objectannotationtaghistoryentry:person']),
('unsetted', orm['ietfworkflows.objectannotationtaghistoryentry:unsetted']),
('content_type', orm['ietfworkflows.objectannotationtaghistoryentry:content_type']),
('change_date', orm['ietfworkflows.objectannotationtaghistoryentry:change_date']),
('setted', orm['ietfworkflows.objectannotationtaghistoryentry:setted']),
('content_id', orm['ietfworkflows.objectannotationtaghistoryentry:content_id']),
('id', orm['ietfworkflows.objectannotationtaghistoryentry:id']),
))
db.send_create_signal('ietfworkflows', ['objectannotationtaghistoryentry'])