1
0
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:
Vicențiu Ciorbaru
2013-10-17 15:02:47 -07:00
committed by Sergei Golubchik
parent ba42300be0
commit 69a3deb58e
3 changed files with 10 additions and 5 deletions

View File

@ -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
#