mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
38 lines
927 B
Python
38 lines
927 B
Python
# Generated by Django 2.2.10 on 2021-03-19 11:09
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('people', '0049_relationship_latest_by_timestamp'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='organisationrelationship',
|
|
options={},
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='organisationrelationship',
|
|
name='created',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='organisationrelationship',
|
|
name='expired',
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='relationship',
|
|
options={},
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='relationship',
|
|
name='created',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='relationship',
|
|
name='expired',
|
|
),
|
|
]
|