mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-09 03:09:34 +00:00
* chore(django): 修改版本依赖 * [fix]: 兼容django 3 * fix(merge): 去掉不用的JSONField * fix(requirements): 修改加密库的版本 Co-authored-by: ibuler <ibuler@qq.com>
19 lines
373 B
Python
19 lines
373 B
Python
# Generated by Django 3.1 on 2020-11-19 03:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('applications', '0006_application'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='application',
|
|
name='attrs',
|
|
field=models.JSONField(),
|
|
),
|
|
]
|