mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-29 01:01:11 +03:00
Bugfix/MySQL RecordManager Varchar Size (#2192)
change varchar size to 255
This commit is contained in:
@@ -192,8 +192,8 @@ class MySQLRecordManager implements RecordManagerInterface {
|
|||||||
|
|
||||||
await this.queryRunner.manager.query(`create table if not exists \`${this.tableName}\` (
|
await this.queryRunner.manager.query(`create table if not exists \`${this.tableName}\` (
|
||||||
\`uuid\` varchar(36) primary key default (UUID()),
|
\`uuid\` varchar(36) primary key default (UUID()),
|
||||||
\`key\` varchar(36) not null,
|
\`key\` varchar(255) not null,
|
||||||
\`namespace\` varchar(36) not null,
|
\`namespace\` varchar(255) not null,
|
||||||
\`updated_at\` DOUBLE precision not null,
|
\`updated_at\` DOUBLE precision not null,
|
||||||
\`group_id\` varchar(36),
|
\`group_id\` varchar(36),
|
||||||
unique key \`unique_key_namespace\` (\`key\`,
|
unique key \`unique_key_namespace\` (\`key\`,
|
||||||
|
|||||||
Reference in New Issue
Block a user