mirror of
https://github.com/standardebooks/web.git
synced 2025-07-15 02:46:46 -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
9
config/sql/se/Users.sql
Normal file
9
config/sql/se/Users.sql
Normal file
|
@ -0,0 +1,9 @@
|
|||
CREATE TABLE `Users` (
|
||||
`UserId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`Email` varchar(80) DEFAULT NULL,
|
||||
`Name` varchar(255) DEFAULT NULL,
|
||||
`Timestamp` datetime NOT NULL,
|
||||
`Uuid` char(36) NOT NULL,
|
||||
PRIMARY KEY (`UserId`),
|
||||
UNIQUE KEY `idxEmail` (`Email`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=281 DEFAULT CHARSET=utf8mb4;
|
Loading…
Add table
Add a link
Reference in a new issue