Skip to content

Commit

Permalink
Remove approved field from topics
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondberg committed Apr 6, 2024
1 parent 2dcb441 commit a760474
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
17 changes: 17 additions & 0 deletions chipy_org/apps/meetings/migrations/0006_remove_topic_approved.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.11 on 2024-04-05 22:54

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("meetings", "0005_alter_topic_status"),
]

operations = [
migrations.RemoveField(
model_name="topic",
name="approved",
),
]
1 change: 0 additions & 1 deletion chipy_org/apps/meetings/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@ def __str__(self):
)
slides_link = models.URLField(blank=True, null=True)
start_time = models.DateTimeField(blank=True, null=True)
approved = models.BooleanField(default=False)
status = models.CharField(
max_length=50, choices=StatusChoice.ALL, null=True, blank=True, default="submitted"
)
Expand Down

0 comments on commit a760474

Please sign in to comment.