20 lines
489 B
Python
20 lines
489 B
Python
# Generated by Django 3.0.5 on 2020-08-01 07:37
|
|
|
|
import django.contrib.postgres.fields.jsonb
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('crm', '0017_consumer_process'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='consumer',
|
|
name='process',
|
|
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=dict, verbose_name='练习进度'),
|
|
),
|
|
]
|