Skip to content

Commit

Permalink
adds migration
Browse files Browse the repository at this point in the history
  • Loading branch information
actlikewill committed Jul 30, 2024
1 parent 4bb2dd4 commit bb47800
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions peachjam/migrations/0150_peachjamsettings_allow_save_documents.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 3.2.25 on 2024-07-30 11:20

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("peachjam", "0149_folder_saveddocument"),
]

operations = [
migrations.AddField(
model_name="peachjamsettings",
name="allow_save_documents",
field=models.BooleanField(
default=False,
help_text="Allow documents to be saved.",
verbose_name="allow save documents",
),
),
]

0 comments on commit bb47800

Please sign in to comment.