mirror of
https://github.com/standardebooks/web.git
synced 2025-07-18 20:36:38 -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
10
config/sql/se/Patrons.sql
Normal file
10
config/sql/se/Patrons.sql
Normal file
|
@ -0,0 +1,10 @@
|
|||
CREATE TABLE `Patrons` (
|
||||
`UserId` int(10) unsigned NOT NULL,
|
||||
`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,
|
||||
PRIMARY KEY (`UserId`),
|
||||
KEY `index2` (`IsAnonymous`,`DeactivatedTimestamp`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
Loading…
Add table
Add a link
Reference in a new issue