19 lines
493 B
Python
19 lines
493 B
Python
# Generated by Django 3.1.1 on 2021-10-01 07:38
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('lostplaces', '0008_explorer_level'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='place',
|
|
name='level',
|
|
field=models.IntegerField(choices=[(1, 'Ruin'), (2, 'Vandalized'), (3, 'Natures Treasure'), (4, 'Long Time no See'), (5, 'Time Capsule')], default=5),
|
|
),
|
|
]
|