19 lines
524 B
Python
19 lines
524 B
Python
|
|
# Generated by Django 5.0.6 on 2024-07-24 09:08
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('huodong', '0003_alter_activity_scope'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='activity',
|
||
|
|
name='scope',
|
||
|
|
field=models.CharField(choices=[('新建', '新建'), ('搬迁', '搬迁'), ('原址装修', '原址装修'), ('其他技术问题', '其他技术问题')], max_length=255),
|
||
|
|
),
|
||
|
|
]
|