Skip to content

Commit 2253236

Browse files
committed
feat(schema): add is_new column to iast_api_route_v2 for API route change status
1 parent 05edac7 commit 2253236

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

mysql/dongtai-mysql-schema.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12931,4 +12931,7 @@ INSERT INTO `webapi_api_site` (`id`, `path`, `method`, `name`) VALUES (4, 'api/v
1293112931
INSERT INTO `webapi_api_site` (`id`, `path`, `method`, `name`) VALUES (5, 'api/v1/license/current_concurrency', 'GET', '当前并发');
1293212932
COMMIT;
1293312933

12934+
alter table iast_api_route_v2
12935+
add is_new int default 0 not null comment 'API route change status: 0-Existing, 1-New, 2-Deleted';
12936+
1293412937
SET FOREIGN_KEY_CHECKS = 1;

0 commit comments

Comments
 (0)