-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1525 from palewire/palewire-patch-1
Extend character field on E530 model
- Loading branch information
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
calaccess_raw/migrations/0027_alter_cvre530cd_other_desc.py
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,19 @@ | ||
# Generated by Django 4.0.8 on 2022-10-31 14:44 | ||
|
||
import calaccess_raw.fields | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('calaccess_raw', '0026_auto_20220909_2321'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='cvre530cd', | ||
name='other_desc', | ||
field=calaccess_raw.fields.CharField(db_column='OTHER_DESC', help_text='This field is undocumented', max_length=500), | ||
), | ||
] |
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