Skip to content

Commit 31fe3b7

Browse files
committed
Bump django-simple-history version to 2.8.0
1 parent 622e213 commit 31fe3b7

File tree

3 files changed

+75
-1
lines changed

3 files changed

+75
-1
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.17 on 2020-04-10 13:56
3+
from __future__ import unicode_literals
4+
5+
from django.conf import settings
6+
from django.db import migrations, models
7+
import django.db.models.deletion
8+
9+
10+
class Migration(migrations.Migration):
11+
12+
dependencies = [
13+
('conferences', '0015_auto_20200322_1904'),
14+
]
15+
16+
operations = [
17+
migrations.AddField(
18+
model_name='historicalconferenceproposalreviewer',
19+
name='history_change_reason',
20+
field=models.CharField(max_length=100, null=True),
21+
),
22+
migrations.AlterField(
23+
model_name='historicalconferenceproposalreviewer',
24+
name='created_by',
25+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Created By'),
26+
),
27+
migrations.AlterField(
28+
model_name='historicalconferenceproposalreviewer',
29+
name='modified_by',
30+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Modified By'),
31+
),
32+
]
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.17 on 2020-04-10 13:56
3+
from __future__ import unicode_literals
4+
5+
from django.conf import settings
6+
from django.db import migrations, models
7+
import django.db.models.deletion
8+
9+
10+
class Migration(migrations.Migration):
11+
12+
dependencies = [
13+
('proposals', '0026_auto_20200323_2010'),
14+
]
15+
16+
operations = [
17+
migrations.AddField(
18+
model_name='historicalproposal',
19+
name='history_change_reason',
20+
field=models.CharField(max_length=100, null=True),
21+
),
22+
migrations.AddField(
23+
model_name='historicalproposalsectionreviewervote',
24+
name='history_change_reason',
25+
field=models.CharField(max_length=100, null=True),
26+
),
27+
migrations.AlterField(
28+
model_name='historicalproposal',
29+
name='author',
30+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Primary Speaker'),
31+
),
32+
migrations.AlterField(
33+
model_name='historicalproposal',
34+
name='proposal_section',
35+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='proposals.ProposalSection', verbose_name='Proposal Section'),
36+
),
37+
migrations.AlterField(
38+
model_name='historicalproposal',
39+
name='proposal_type',
40+
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='proposals.ProposalType', verbose_name='Proposal Type'),
41+
),
42+
]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ mock==2.0.0 # Django all auth needs
3535

3636
# Admin
3737
# -------------------------------------------------
38-
django_simple_history==1.8.0
38+
django_simple_history==2.8.0
3939

4040
# Frontend Helpers
4141
# -------------------------------------------------

0 commit comments

Comments
 (0)