Skip to content

Commit

Permalink
Update 0002_climatechangescenario_climatelayer_climatemodelling_and_m…
Browse files Browse the repository at this point in the history
…ore.py - Add max_length
  • Loading branch information
geofranzi authored Apr 9, 2024
1 parent b739f60 commit 5f2aaa0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Migration(migrations.Migration):
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=255, unique=True)),
('type', models.CharField(blank=True, choices=[('Bias Correction', 'Bias Correction'), ('Downscaling', 'Downscaling'), ('Other', 'Other'), ('', 'None')], null=True)),
('type', models.CharField(max_length=255, blank=True, choices=[('Bias Correction', 'Bias Correction'), ('Downscaling', 'Downscaling'), ('Other', 'Other'), ('', 'None')], null=True)),
('description', models.TextField(blank=True, null=True)),
('ref_url', models.TextField(blank=True, max_length=500, null=True)),
('ref_citation', models.TextField(blank=True, max_length=500, null=True)),
Expand Down

0 comments on commit 5f2aaa0

Please sign in to comment.