From 6caddf05c0bbf10758b149972516e616014f3ebf Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Wed, 22 Oct 2025 12:16:56 +0200 Subject: [PATCH] fix migration mysql --- database/migration/migrations/0096-upgrade_dlt_tables.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migration/migrations/0096-upgrade_dlt_tables.ts b/database/migration/migrations/0096-upgrade_dlt_tables.ts index 849cdfc88..8ee2550ca 100644 --- a/database/migration/migrations/0096-upgrade_dlt_tables.ts +++ b/database/migration/migrations/0096-upgrade_dlt_tables.ts @@ -8,7 +8,7 @@ export async function upgrade(queryFn: (query: string, values?: any[]) => Promis ADD \`user_id\` INT UNSIGNED NULL DEFAULT NULL AFTER \`transaction_id\`, ADD \`transaction_link_id\` INT UNSIGNED NULL DEFAULT NULL AFTER \`user_id\`, ADD \`type_id\` INT UNSIGNED NOT NULL AFTER \`transaction_link_id\`, - ADD \`error\` text NULL DEFAULT NULL AFTER \`verified_at\`, + ADD \`error\` text NULL DEFAULT NULL AFTER \`verified_at\` ; `) }