Skip to content

Commit dd5e602

Browse files
committed
Longer prop names
1 parent 4d7ebd3 commit dd5e602

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 3.2.15 on 2024-08-16 15:32
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('calaccess_scraped', '0003_auto_20210426_2334'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='proposition',
15+
name='name',
16+
field=models.CharField(max_length=1000, verbose_name='proposition name'),
17+
),
18+
migrations.AlterField(
19+
model_name='proposition',
20+
name='scraped_id',
21+
field=models.CharField(max_length=1000, verbose_name='proposition identification number'),
22+
),
23+
]

calaccess_scraped/models/propositions/propositions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ class Proposition(BaseScrapedModel):
1717
# '2003 Recall Question'
1818
name = models.CharField(
1919
verbose_name="proposition name",
20-
max_length=200
20+
max_length=1000
2121
)
2222
scraped_id = models.CharField(
2323
verbose_name="proposition identification number",
24-
max_length=200
24+
max_length=1000
2525
)
2626
election = models.ForeignKey(
2727
'PropositionElection',

0 commit comments

Comments
 (0)