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/default_roles.sql

13 lines
526 B

create table mysql.default_roles
(
HOST char(255) charset ascii default '' not null,
USER char(32) default '' not null,
DEFAULT_ROLE_HOST char(255) charset ascii default '%' not null,
DEFAULT_ROLE_USER char(32) default '' not null,
primary key (HOST, USER, DEFAULT_ROLE_HOST, DEFAULT_ROLE_USER)
)
comment 'Default roles' collate = utf8mb3_bin
row_format = DYNAMIC
stats_persistent = 0;