landsandboat/sql/server_variables.sql
2021-04-18 13:49:29 -04:00

15 lines
424 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,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of server_variables
-- ----------------------------