fix: remove dupe updated_at column from invoice

This commit is contained in:
Ricardo Arturo Cabral Mejía
2023-01-13 23:37:01 -05:00
parent 77177a20c0
commit d1cdd9672a

View File

@ -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)
})
}