Skip to content

Commit

Permalink
Add Board Membership - About
Browse files Browse the repository at this point in the history
  • Loading branch information
brylie committed Sep 4, 2024
1 parent 5f6002f commit baa7b86
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
36 changes: 36 additions & 0 deletions documents/migrations/0017_alter_publicboarddocument_category.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Generated by Django 5.0.6 on 2024-09-04 17:27

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("documents", "0016_alter_meetingdocument_body_and_more"),
]

operations = [
migrations.AlterField(
model_name="publicboarddocument",
name="category",
field=models.CharField(
choices=[
(
"corporation_documents_current_year",
"Corporation Documents - current year",
),
(
"corporation_documents_prior_years",
"Corporation Documents - prior years",
),
("annual_reports", "Annual Reports"),
(
"relations_with_monthly_meetings",
"Relations with Monthly Meetings",
),
("board_photos", "Board Photos"),
("board_membership_about", "Board Membership - About"),
],
max_length=100,
),
),
]
4 changes: 4 additions & 0 deletions documents/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ class PublicBoardDocmentCategoryChoices(models.TextChoices):
"board_photos",
"Board Photos",
)
BOARD_MEMBERSHIP_ABOUT = (
"board_membership_about",
"Board Membership - About",
)

publication_date = models.DateField()
drupal_node_id = models.PositiveIntegerField(
Expand Down

0 comments on commit baa7b86

Please sign in to comment.