Added a migration to capture changes to HistoricalRecords triggered by changes in django-simple-history
- Legacy-Id: 15836
This commit is contained in:
parent
4b6dd2839d
commit
a84ae9a10d
21
ietf/group/migrations/0004_auto_20181218_2349.py
Normal file
21
ietf/group/migrations/0004_auto_20181218_2349.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.17 on 2018-12-18 23:49
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('group', '0003_groupfeatures_data'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='historicalgroupfeatures',
|
||||
name='agenda_type',
|
||||
field=models.ForeignKey(blank=True, db_constraint=False, default=b'ietf', null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='name.AgendaTypeName'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue