Skip to content

Commit a84ae9a

Browse files
committed
Added a migration to capture changes to HistoricalRecords triggered by changes in django-simple-history
- Legacy-Id: 15836
1 parent 4b6dd28 commit a84ae9a

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.17 on 2018-12-18 23:49
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
import django.db.models.deletion
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
dependencies = [
12+
('group', '0003_groupfeatures_data'),
13+
]
14+
15+
operations = [
16+
migrations.AlterField(
17+
model_name='historicalgroupfeatures',
18+
name='agenda_type',
19+
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'),
20+
),
21+
]

0 commit comments

Comments
 (0)