mirror of
https://github.com/standardebooks/web.git
synced 2025-07-14 02:21:55 -04:00
Change 'timestamp' properties on objects to more descriptive names
This commit is contained in:
parent
18f761929a
commit
dbefba6b94
32 changed files with 74 additions and 74 deletions
|
@ -1,12 +1,12 @@
|
|||
CREATE TABLE `Payments` (
|
||||
`PaymentId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`UserId` int(10) unsigned DEFAULT NULL,
|
||||
`Timestamp` datetime NOT NULL,
|
||||
`Created` datetime NOT NULL,
|
||||
`ChannelId` tinyint(4) unsigned NOT NULL,
|
||||
`TransactionId` varchar(80) NOT NULL,
|
||||
`Amount` decimal(7,2) unsigned NOT NULL,
|
||||
`Fee` decimal(7,2) unsigned NOT NULL DEFAULT 0.00,
|
||||
`IsRecurring` tinyint(1) unsigned NOT NULL,
|
||||
PRIMARY KEY (`PaymentId`),
|
||||
KEY `index2` (`UserId`,`Amount`,`Timestamp`,`IsRecurring`)
|
||||
KEY `index2` (`UserId`,`Amount`,`Created`,`IsRecurring`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=828 DEFAULT CHARSET=utf8mb4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue