23 lines
622 B
Python
23 lines
622 B
Python
# 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
|
|
),
|
|
),
|
|
]
|