Bugfix/modify column types to longtext (#2908)

modify column types to longtext
This commit is contained in:
Henry Heng
2024-07-30 16:39:19 +01:00
committed by GitHub
parent 5d906e7b5c
commit 7f668e6413
5 changed files with 45 additions and 3 deletions
@@ -194,7 +194,7 @@ class MySQLRecordManager implements RecordManagerInterface {
\`key\` varchar(255) not null,
\`namespace\` varchar(255) not null,
\`updated_at\` DOUBLE precision not null,
\`group_id\` varchar(36),
\`group_id\` longtext,
unique key \`unique_key_namespace\` (\`key\`,
\`namespace\`));`)
const columns = [`updated_at`, `key`, `namespace`, `group_id`]