landsandboat/sql/server_variables.sql

17 lines
493 B
MySQL
Raw Permalink Normal View History

2016-01-16 01:26:33 -05:00
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,
2016-01-16 01:26:33 -05:00
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
2016-01-16 01:26:33 -05:00
-- ----------------------------
-- Records of server_variables
-- ----------------------------