Skip to content

Commit

Permalink
Change in field typo requires update of model
Browse files Browse the repository at this point in the history
  • Loading branch information
ajparsons committed Dec 24, 2024
1 parent e968bf2 commit 63d25d2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/votes/migrations/0013_alter_motion_motion_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.15 on 2024-12-24 12:42

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('votes', '0012_rename_evidence_detai_whipreport_evidence_detail'),
]

operations = [
migrations.AlterField(
model_name='motion',
name='motion_type',
field=models.CharField(choices=[('amendment', 'Amendment'), ('ten_minute_rule', 'Ten Minute Rule'), ('lords_amendment', 'Lords Amendment'), ('first_stage', 'First Stage'), ('second_stage', 'Second Stage'), ('committee_clause', 'Committee Clause'), ('second_stage_committee', 'Second Stage Committee'), ('third_stage', 'Third Stage'), ('closure', 'Closure'), ('programme', 'Programme'), ('approve_statutory_instrument', 'Approve Statutory Instrument'), ('revoke_statutory_instrument', 'Revoke Statutory Instrument'), ('adjournment', 'Adjournment'), ('timetable_change', 'Timetable Change'), ('humble_address', 'Humble Address'), ('government_agenda', 'Government Agenda'), ('financial', 'Financial'), ('confidence', 'Confidence'), ('standing_order_change', 'Standing Order Change'), ('private_sitting', 'Private Sitting'), ('eu_document_scrutiny', 'Eu Document Scrutiny'), ('other', 'Other'), ('proposed_clause', 'Proposed Clause'), ('bill_introduction', 'Bill Introduction'), ('unknown', 'Unknown'), ('reasoned_amendment', 'Reasoned Amendment')], max_length=255),
),
]

0 comments on commit 63d25d2

Please sign in to comment.