add location migrate

This commit is contained in:
2025-08-30 03:48:07 +09:00
parent cf0adb34f9
commit 596b7313dd
11 changed files with 1021 additions and 3 deletions

View File

@ -0,0 +1,22 @@
# Generated manually to add status field to NewEvent2
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rog', '0007_auto_20250829_1836'),
]
operations = [
migrations.AddField(
model_name='newevent2',
name='status',
field=models.CharField(
choices=[('public', 'Public'), ('private', 'Private'), ('draft', 'Draft'), ('closed', 'Closed')],
default='draft',
help_text='イベントステータス',
max_length=20
),
),
]