Here is the output of show create table user
MariaDB [keystone]> show create table user;
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
user |
CREATE TABLE `user` (
`id` varchar(64) NOT NULL,
`name` varchar(255) NOT NULL,
`extra` text DEFAULT NULL,
`password` varchar(128) DEFAULT NULL,
`enabled` tinyint(1) DEFAULT NULL,
`domain_id` varchar(64) NOT NULL,
`default_project_id` varchar(64) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ixu_user_name_domain_id` (`domain_id`,`name`),
CONSTRAINT `CONSTRAINT_1` CHECK (`enabled` in (0,1))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 |
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.000 sec)
can you include the `show create table user` please.