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.

11 lines
281 B

create table mysql.plugin
(
name varchar(64) default '' not null
primary key,
dl varchar(128) default '' not null
)
comment 'MySQL plugins' charset = utf8mb3
row_format = DYNAMIC
stats_persistent = 0;