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.
12 lines
454 B
12 lines
454 B
create table performance_schema.setup_actors
|
|
(
|
|
HOST char(255) charset ascii default '%' not null,
|
|
USER char(32) collate utf8mb4_bin default '%' not null,
|
|
ROLE char(32) collate utf8mb4_bin default '%' not null,
|
|
ENABLED enum ('YES', 'NO') default 'YES' not null,
|
|
HISTORY enum ('YES', 'NO') default 'YES' not null,
|
|
primary key (HOST, USER, ROLE) using hash
|
|
)
|
|
engine = PERFORMANCE_SCHEMA;
|
|
|