feat: 初始化核心应用结构,新增循环交易、短信、分配规则和用户设置等服务,并更新相关依赖和配置。

This commit is contained in:
2026-02-02 01:41:51 +08:00
parent 49fcce531d
commit fa8a35a85b
13 changed files with 253 additions and 37 deletions

5
migration.sql Normal file
View File

@@ -0,0 +1,5 @@
-- Add AutoExecute column to allocation_rules table
ALTER TABLE allocation_rules ADD COLUMN auto_execute BOOLEAN DEFAULT TRUE;
-- Add Phone column to user_settings table
ALTER TABLE user_settings ADD COLUMN phone VARCHAR(20);