19 lines
504 B
Python
19 lines
504 B
Python
|
# Generated by Django 3.2.5 on 2021-11-26 08:12
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('app', '0023_alter_range_feature'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='resource',
|
||
|
name='stars',
|
||
|
field=models.TextField(blank=True, choices=[('', ''), ('-', '-'), ('*', '*'), ('**', '**'), ('***', '***'), ('****', '****'), ('*****', '*****')], null=True),
|
||
|
),
|
||
|
]
|