mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
Added delete method to all importers Added nonrig importing Venue import optimisation Reran importer for empty DB Reset password appropriately Added view permission to all models where needed. Migrated DB to reflect. Fixed all print buttons on event detail.
21 lines
460 B
Python
21 lines
460 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('RIGS', '0012_auto_20141106_0253'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='event',
|
|
name='person',
|
|
field=models.ForeignKey(blank=True, null=True, to='RIGS.Person'),
|
|
preserve_default=True,
|
|
),
|
|
]
|