Commit 4dd483e2 authored by szh's avatar szh

add rasp_version

parent 271aed4f
...@@ -86,3 +86,16 @@ CREATE TABLE `rasp_tickets` ( ...@@ -86,3 +86,16 @@ CREATE TABLE `rasp_tickets` (
PRIMARY KEY (`hash`), PRIMARY KEY (`hash`),
KEY `status` (`status`) KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Table structure for rasp_version
-- ----------------------------
DROP TABLE IF EXISTS `rasp_version`;
CREATE TABLE `rasp_version` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`version` varchar(255) DEFAULT NULL COMMENT '版本号',
`type` tinyint(3) DEFAULT '0' COMMENT '类型 1 bityuan 2 chain33-pai',
`addtime` int(11) DEFAULT NULL COMMENT '添加时间',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='程序版本更新控制';
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment