chore: update V14 migration and add application-local-staging.yml
Some checks failed
Build and Push Backend / docker (push) Failing after 5s

- Updated play-admin migration: V14__add_clerk_level_order_number.sql
- Added play-admin/src/main/resources/application-local-staging.yml
This commit is contained in:
irving
2025-11-05 23:12:58 -05:00
parent 749a99dd01
commit d6402d60b2
2 changed files with 90 additions and 4 deletions

View File

@@ -1,7 +1,5 @@
ALTER TABLE `play_clerk_level_info`
ADD COLUMN `order_number` BIGINT NULL COMMENT '等级排序号'
AFTER `style_image_url`;
ADD COLUMN `order_number` bigint NULL COMMENT '排序字段' AFTER `style_image_url`;
UPDATE `play_clerk_level_info`
SET `order_number` = `level`
WHERE `order_number` IS NULL;
SET `order_number` = `level`;