-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(backend): sqlserver数据迁移返回数据补充 #5164
# Reviewed, transaction id: 10609
- Loading branch information
1 parent
ba690bb
commit 6af99f9
Showing
4 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
dbm-ui/backend/db_meta/migrations/0039_auto_20240626_1602.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 3.2.25 on 2024-06-26 08:02 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("db_meta", "0038_auto_20240621_1226"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="sqlserverdtsinfo", | ||
name="db_list", | ||
field=models.JSONField(blank=True, default=list, help_text="库正则", null=True), | ||
), | ||
migrations.AddField( | ||
model_name="sqlserverdtsinfo", | ||
name="ignore_db_list", | ||
field=models.JSONField(blank=True, default=list, help_text="忽略库正则", null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters