-
-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
…n_print_pause /notify_on_print_resume)
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 4.0.10 on 2024-01-07 07:15 | ||
This comment has been minimized.
Sorry, something went wrong.
kennethjiang
Contributor
|
||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('app', '0074_auto_20231009_2220'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='notificationsetting', | ||
name='notify_on_print_pause', | ||
field=models.BooleanField(blank=True, default=False), | ||
), | ||
migrations.AddField( | ||
model_name='notificationsetting', | ||
name='notify_on_print_resume', | ||
field=models.BooleanField(blank=True, default=False), | ||
), | ||
migrations.AddField( | ||
model_name='notificationsetting', | ||
name='notify_on_print_start', | ||
field=models.BooleanField(blank=True, default=False), | ||
), | ||
] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Is this necessary?