18 lines
393 B
Python
18 lines
393 B
Python
# Generated by Django 4.0.5 on 2022-09-03 15:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('homepage', '0022_setting_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddConstraint(
|
|
model_name='setting',
|
|
constraint=models.UniqueConstraint(fields=('name',), name='unique_name'),
|
|
),
|
|
]
|