删掉旧的数据库迁移文件

This commit is contained in:
2025-06-14 17:08:52 +08:00
parent 258e1474ee
commit 45d727a9e0
70 changed files with 208 additions and 2144 deletions

View File

@@ -1,8 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.4 on 2017-10-23 08:11
from __future__ import unicode_literals
# Generated by Django 5.2.3 on 2025-06-14 08:51
import django.contrib.postgres.fields.jsonb
from django.db import migrations, models
@@ -18,8 +15,8 @@ class Migration(migrations.Migration):
name='SysOptions',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('key', models.CharField(db_index=True, max_length=128, unique=True)),
('value', django.contrib.postgres.fields.jsonb.JSONField()),
('key', models.TextField(db_index=True, unique=True)),
('value', models.JSONField()),
],
),
]