20 lines
469 B
Python
20 lines
469 B
Python
# Generated by Django 3.0.5 on 2022-06-29 05:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('system', '0021_auto_20220530_1520'),
|
|
('ability', '0036_auto_20220607_1445'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='qtask',
|
|
name='orgs',
|
|
field=models.ManyToManyField(through='ability.QOrg', to='system.Organization'),
|
|
),
|
|
]
|