Skip to content

Commit

Permalink
Merge pull request #1525 from palewire/palewire-patch-1
Browse files Browse the repository at this point in the history
Extend character field on E530 model
  • Loading branch information
palewire authored Oct 31, 2022
2 parents d608f6a + be2a964 commit b92804e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions calaccess_raw/migrations/0027_alter_cvre530cd_other_desc.py
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),
),
]
2 changes: 1 addition & 1 deletion calaccess_raw/models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ class CvrE530Cd(CalAccessBaseModel):
db_column="TYPE_OTHER", help_text="This field is undocumented"
)
other_desc = fields.CharField(
db_column="OTHER_DESC", max_length=49, help_text="This field is undocumented"
db_column="OTHER_DESC", max_length=500, help_text="This field is undocumented"
)

class Meta(CalAccessBaseModel.Meta):
Expand Down

0 comments on commit b92804e

Please sign in to comment.