landsandboat/sql/server_variables.sql

16 lines
493 B
SQL

SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `server_variables`
-- ----------------------------
DROP TABLE IF EXISTS `server_variables`;
CREATE TABLE `server_variables` (
`name` varchar(50) NOT NULL,
`value` int(11) NOT NULL,
`expiry` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- ----------------------------
-- Records of server_variables
-- ----------------------------