mirror of
https://github.com/standardebooks/web.git
synced 2025-07-19 12:54:48 -04:00
Add IsMatchingDonation to Payments
This commit is contained in:
parent
f44385c994
commit
1f3b66144d
1 changed files with 1 additions and 0 deletions
|
@ -7,6 +7,7 @@ CREATE TABLE `Payments` (
|
||||||
`Amount` decimal(7,2) unsigned NOT NULL,
|
`Amount` decimal(7,2) unsigned NOT NULL,
|
||||||
`Fee` decimal(7,2) unsigned NOT NULL DEFAULT 0.00,
|
`Fee` decimal(7,2) unsigned NOT NULL DEFAULT 0.00,
|
||||||
`IsRecurring` tinyint(1) unsigned NOT NULL,
|
`IsRecurring` tinyint(1) unsigned NOT NULL,
|
||||||
|
`IsMatchingDonation` tinyint(1) unsigned NOT NULL,
|
||||||
PRIMARY KEY (`PaymentId`),
|
PRIMARY KEY (`PaymentId`),
|
||||||
KEY `index2` (`UserId`,`Amount`,`Created`,`IsRecurring`)
|
KEY `index2` (`UserId`,`Amount`,`Created`,`IsRecurring`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=828 DEFAULT CHARSET=utf8mb4;
|
) ENGINE=InnoDB AUTO_INCREMENT=828 DEFAULT CHARSET=utf8mb4;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue