This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update old migrations and squash them to work in newer django versions
- Loading branch information
1 parent
6b62302
commit 9aa668b
Showing
8 changed files
with
1,373 additions
and
104 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
1,009 changes: 1,009 additions & 0 deletions
1,009
cbrsservices/migrations/0001_squashed_0002_auto_20190806_1609.py
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
233 changes: 216 additions & 17 deletions
233
...ces/migrations/0003_auto_20190805_1640.py → ...ces/migrations/0002_auto_20190806_1609.py
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
# Generated by Django 2.1.9 on 2019-08-06 16:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('cbrsservices', '0001_squashed_0002_auto_20190806_1609'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='historicalcase', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalcasefile', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalcasetag', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalcomment', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicaldetermination', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalfieldoffice', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalproperty', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalreportcase', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalrequester', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalsystemmap', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalsystemunit', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalsystemunitmap', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalsystemunitprohibitiondate', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalsystemunittype', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicaltag', | ||
name='history_change_reason', | ||
field=models.CharField(max_length=100, null=True), | ||
), | ||
] |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters