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.
16 lines
1.1 KiB
16 lines
1.1 KiB
create table mysql.columns_priv
|
|
(
|
|
Host char(255) charset ascii default '' not null,
|
|
Db char(64) default '' not null,
|
|
User char(32) default '' not null,
|
|
Table_name char(64) default '' not null,
|
|
Column_name char(64) default '' not null,
|
|
Timestamp timestamp default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP,
|
|
Column_priv set ('Select', 'Insert', 'Update', 'References') charset utf8mb3 default '' not null,
|
|
primary key (Host, User, Db, Table_name, Column_name)
|
|
)
|
|
comment 'Column privileges' collate = utf8mb3_bin
|
|
row_format = DYNAMIC
|
|
stats_persistent = 0;
|
|
|