# 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 ), ), ]