This commit is contained in:
2026-04-10 13:31:15 +08:00
parent 6c59e41b32
commit c092662ebe
56 changed files with 4362 additions and 684 deletions
+7
View File
@@ -0,0 +1,7 @@
CREATE TABLE `wa_recharge` (
`id` int NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`amount` int NOT NULL,
`created_at` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;