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.
YZWL/IDEA/mysql/global_grants.sql

13 lines
553 B

create table mysql.global_grants
(
USER char(32) default '' not null,
HOST char(255) charset ascii default '' not null,
PRIV char(32) charset utf8mb3 default '' not null,
WITH_GRANT_OPTION enum ('N', 'Y') charset utf8mb3 default 'N' not null,
primary key (USER, HOST, PRIV)
)
comment 'Extended global grants' collate = utf8mb3_bin
row_format = DYNAMIC
stats_persistent = 0;