You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
329 B
6 lines
329 B
CREATE TABLE IF NOT EXISTS `{{prefix}}hello_world` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '名称',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci COMMENT='演示插件表';
|
|
INSERT INTO `{{prefix}}hello_world`(`name`) VALUES ('名称');
|