-
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.
Added migration to extend the character length on NamesCd fields
- Loading branch information
Showing
2 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
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,29 @@ | ||
# Generated by Django 3.2.13 on 2022-07-25 17:11 | ||
|
||
import calaccess_raw.fields | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('calaccess_raw', '0024_auto_20210822_2158'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='namescd', | ||
name='fullname', | ||
field=calaccess_raw.fields.CharField(db_column='FULLNAME', help_text='Full name', max_length=1000), | ||
), | ||
migrations.AlterField( | ||
model_name='namescd', | ||
name='naml', | ||
field=calaccess_raw.fields.CharField(db_column='NAML', help_text='Last name', max_length=1000), | ||
), | ||
migrations.AlterField( | ||
model_name='namescd', | ||
name='naml_search', | ||
field=calaccess_raw.fields.CharField(db_column='NAML_SEARCH', help_text='Last name', max_length=1000), | ||
), | ||
] |
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