mirror of
https://github.com/standardebooks/web.git
synced 2025-07-14 10:31:59 -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
|
@ -3,8 +3,8 @@ CREATE TABLE `Patrons` (
|
|||
`IsAnonymous` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||
`AlternateName` varchar(80) DEFAULT NULL,
|
||||
`IsSubscribedToEmails` tinyint(1) NOT NULL DEFAULT 1,
|
||||
`Timestamp` datetime NOT NULL,
|
||||
`DeactivatedTimestamp` datetime DEFAULT NULL,
|
||||
`Created` datetime NOT NULL,
|
||||
`Ended` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`UserId`),
|
||||
KEY `index2` (`IsAnonymous`,`DeactivatedTimestamp`)
|
||||
KEY `index2` (`IsAnonymous`,`Ended`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue