# Generated by Django 3.2.9 on 2022-08-29 14:11 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('rog', '0023_alter_location_cp'), ] operations = [ migrations.AddField( model_name='customuser', name='group', field=models.CharField(choices=[('G1', '大垣-初心者'), ('G2', '大垣-3時間'), ('G3', '大垣-5時間')], default='G1', max_length=2), ), ]