同步数据库
This commit is contained in:
parent
b050181c55
commit
7f7a0c20f4
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 3.0.4 on 2021-05-27 00:28
|
||||
|
||||
import django.contrib.postgres.fields.jsonb
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('examtest', '0029_workscope_is_public'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='examtest',
|
||||
name='consumer_detail',
|
||||
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True, verbose_name='用户详情'),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue