my table definition is : ```create table scm_dashb...
# orm-help
a
my table definition is :
Copy code
create table scm_dashboard.dashboard_config2
(
    `id`        varchar(255),
    `userId`    varchar(255) DEFAULT NULL,
    `vizState`  varchar(255) DEFAULT NULL,
    `changedAt` varchar(255) DEFAULT NULL,
    `createdAt` varchar(255) DEFAULT NULL,
    PRIMARY KEY (`id`)
)