feat: new upgrade db method
This commit is contained in:
29
extra/sql/install/boss.sql
Normal file
29
extra/sql/install/boss.sql
Normal file
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server : 192.168.4.95
|
||||
Source Server Type : MySQL
|
||||
Source Server Version : 100621 (10.6.21-MariaDB-0ubuntu0.22.04.2)
|
||||
Source Host : 192.168.4.95:3306
|
||||
Source Schema : boss
|
||||
|
||||
Target Server Type : MySQL
|
||||
Target Server Version : 100621 (10.6.21-MariaDB-0ubuntu0.22.04.2)
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 17/06/2025 16:16:11
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tb_ping
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `tb_ping`;
|
||||
CREATE TABLE `tb_ping` (
|
||||
`updated_ts` int UNSIGNED NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`updated_ts`) USING BTREE
|
||||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
Reference in New Issue
Block a user