mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Modify mysql.user table to contain a is_user column.
This commit is contained in:
committed by
Sergei Golubchik
parent
ba42300be0
commit
69a3deb58e
@ -50,6 +50,11 @@ ADD x509_issuer BLOB NOT NULL,
|
||||
ADD x509_subject BLOB NOT NULL;
|
||||
ALTER TABLE user MODIFY ssl_type enum('','ANY','X509', 'SPECIFIED') NOT NULL;
|
||||
|
||||
#
|
||||
# Add roles to the user table
|
||||
ALTER TABLE user
|
||||
ADD is_role enum('N', 'Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL;
|
||||
|
||||
#
|
||||
# tables_priv
|
||||
#
|
||||
|
Reference in New Issue
Block a user