mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 15:20:32 -04:00
6 lines
272 B
SQL
6 lines
272 B
SQL
CREATE TABLE IF NOT EXISTS `PendingPayments` (
|
|
`Created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`Processor` enum('fractured_atlas') NOT NULL,
|
|
`TransactionId` varchar(80) NOT NULL,
|
|
`ProcessedOn` datetime DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|