mirror of
https://github.com/standardebooks/web.git
synced 2025-07-19 04:44:48 -04:00
Add system to retrieve and manage donations in a local database
This commit is contained in:
parent
79c531aacb
commit
70a80d0e02
46 changed files with 782 additions and 910 deletions
6
config/sql/se/PendingPayments.sql
Normal file
6
config/sql/se/PendingPayments.sql
Normal file
|
@ -0,0 +1,6 @@
|
|||
CREATE TABLE `PendingPayments` (
|
||||
`Timestamp` datetime NOT NULL,
|
||||
`ChannelId` tinyint(4) unsigned NOT NULL,
|
||||
`TransactionId` varchar(80) NOT NULL,
|
||||
`ProcessedOn` datetime DEFAULT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
Loading…
Add table
Add a link
Reference in a new issue