Skip to content

Commit

Permalink
fix: remove dupe updated_at column from invoice
Browse files Browse the repository at this point in the history
  • Loading branch information
cameri committed Feb 2, 2023
1 parent 77177a2 commit d1cdd96
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion migrations/20230107_230900_create_invoices_table.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
}
Expand Down

0 comments on commit d1cdd96

Please # to comment.