19 lines
432 B
Python
19 lines
432 B
Python
|
|
# Generated by Django 5.0.6 on 2024-09-10 01:44
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('huodong', '0006_alter_activity_options_alter_branch_options_and_more'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='branch',
|
||
|
|
name='name',
|
||
|
|
field=models.CharField(max_length=255, unique=True),
|
||
|
|
),
|
||
|
|
]
|