Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
qch3n-at authored and luto committed Feb 24, 2024
1 parent 4a37532 commit 12fdc59
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions cal/migrations/0003_alter_event_advertise.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.20 on 2024-02-24 15:30

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('cal', '0002_event_advertise'),
]

operations = [
migrations.AlterField(
model_name='event',
name='advertise',
field=models.BooleanField(default=True),
),
]

0 comments on commit 12fdc59

Please sign in to comment.