Skip to content

Commit

Permalink
add subcommittee
Browse files Browse the repository at this point in the history
  • Loading branch information
twentyforty committed Dec 7, 2021
1 parent 8e7b0f6 commit d53cc80
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions local.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
OS_PEOPLE_DIRECTORY=/Users/alyibrahim/projects/civiqa/backend/openstates/people
DATABASE_URL=postgres://alyibrahim:42571allahis1@localhost:5432/civiqa-db
1 change: 1 addition & 0 deletions openstates/data/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
("party", "Party"),
("committee", "Committee"),
("government", "Government"),
("subcommittee", "Subcommittee"),
)
ORGANIZATION_CLASSIFICATIONS = _keys(ORGANIZATION_CLASSIFICATION_CHOICES)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.8 on 2021-11-19 11:53

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('data', '0044_bill_citations'),
]

operations = [
migrations.AlterField(
model_name='organization',
name='classification',
field=models.CharField(blank=True, choices=[('legislature', 'Legislature'), ('executive', 'Executive'), ('upper', 'Upper Chamber'), ('lower', 'Lower Chamber'), ('party', 'Party'), ('committee', 'Committee'), ('government', 'Government'), ('subcommittee', 'Subcommittee')], help_text='The type of Organization being defined.', max_length=100),
),
]

0 comments on commit d53cc80

Please sign in to comment.