Added migration & sample form type/schema

This commit is contained in:
David Taylor
2015-08-08 16:58:52 +03:00
committed by Tom Price
parent 879060a171
commit 4ee0dab5dc

View File

@@ -19,6 +19,9 @@ class Migration(migrations.Migration):
('data', models.TextField(default=b'{}')),
('event', models.ForeignKey(related_name='forms', to='RIGS.Event')),
],
options={
'permissions': (('create_form', 'Can complete a form'), ('update_form', 'Can change a form'), ('view_form', 'Can view forms')),
},
bases=(models.Model, RIGS.models.RevisionMixin),
),
migrations.CreateModel(