web/config/sql/se/PendingPayments.sql
2024-05-11 21:51:06 -05:00

6 lines
231 B
SQL

CREATE TABLE `PendingPayments` (
`Created` datetime NOT NULL,
`Processor` enum('fractured_atlas') NOT NULL,
`TransactionId` varchar(80) NOT NULL,
`ProcessedOn` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;