Change some datetime columns to timestamp

This commit is contained in:
Alex Cabal 2024-10-24 16:35:40 -05:00
parent 028c8237a5
commit 88c3049d7a
8 changed files with 10 additions and 10 deletions

View file

@ -1,5 +1,5 @@
CREATE TABLE IF NOT EXISTS `PendingPayments` (
`Created` datetime NOT NULL,
`Created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`Processor` enum('fractured_atlas') NOT NULL,
`TransactionId` varchar(80) NOT NULL,
`ProcessedOn` datetime DEFAULT NULL