From d1cdd9672a73639b1e14131ed7ab64319ed3a36a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Arturo=20Cabral=20Mej=C3=ADa?= Date: Fri, 13 Jan 2023 23:37:01 -0500 Subject: [PATCH] fix: remove dupe updated_at column from invoice --- migrations/20230107_230900_create_invoices_table.js | 1 - 1 file changed, 1 deletion(-) diff --git a/migrations/20230107_230900_create_invoices_table.js b/migrations/20230107_230900_create_invoices_table.js index 4e2cfa3..fa6a731 100644 --- a/migrations/20230107_230900_create_invoices_table.js +++ b/migrations/20230107_230900_create_invoices_table.js @@ -10,7 +10,6 @@ exports.up = function (knex) { table.text('description') table.datetime('confirmed_at', { useTz: false, precision: 3 }) table.datetime('expires_at', { useTz: false, precision: 3 }) - table.timestamp('updated_at', { useTz: false }) table.timestamps(true, true, false) }) }