mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 23:30:35 -04:00
6 lines
227 B
SQL
6 lines
227 B
SQL
CREATE TABLE `PendingPayments` (
|
|
`Created` datetime NOT NULL,
|
|
`ChannelId` tinyint(4) unsigned NOT NULL,
|
|
`TransactionId` varchar(80) NOT NULL,
|
|
`ProcessedOn` datetime DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|