Skip to content

Commit

Permalink
Add 'link_all_versions' flag to News model.
Browse files Browse the repository at this point in the history
  • Loading branch information
tompollard committed Jan 31, 2024
1 parent 7702952 commit b0cb2ac
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.1.10 on 2024-01-30 20:50

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("notification", "0009_alter_news_slug"),
]

operations = [
migrations.AddField(
model_name="news",
name="link_all_versions",
field=models.BooleanField(
default=False,
help_text="Check this to link the news item to all versions of the selected project",
),
),
]

0 comments on commit b0cb2ac

Please sign in to comment.