Create userTableSQL

This commit is contained in:
wiecktobi 2018-06-08 10:44:13 +02:00 committed by GitHub
parent f3f0de57ac
commit 24d2e76e30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
sql/userTableSQL Normal file
View File

@ -0,0 +1,7 @@
CREATE TABLE `user` (
`ID` INT NOT NULL AUTO_INCREMENT,
`user` VARCHAR(50) NOT NULL DEFAULT '0',
`email` VARCHAR(100) NOT NULL DEFAULT '0',
`password` VARCHAR(100) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
)