19 lines
482 B
Python
19 lines
482 B
Python
# Generated by Django 3.1.1 on 2021-10-01 06:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('lostplaces', '0007_auto_20211001_0648'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='explorer',
|
|
name='level',
|
|
field=models.IntegerField(choices=[(1, 'Newbie'), (2, 'Scout'), (3, 'Explorer'), (4, 'Journalist'), (5, 'Housekeeper')], default=1),
|
|
),
|
|
]
|