20 lines
477 B
Python
20 lines
477 B
Python
# Generated by Django 3.0.4 on 2020-03-23 06:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('question', '0007_auto_20200319_0846'),
|
|
('crm', '0008_auto_20200322_2113'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='consumer',
|
|
name='collects',
|
|
field=models.ManyToManyField(to='question.Question', verbose_name='收藏试题'),
|
|
),
|
|
]
|