internetprogrammierung/sql/userTable.sql
Marcel Schwarz dc524ac00c solved merge problems
This reverts commit 268a8ea290224c0d4de615683d4c8529df7d5252.
2018-06-11 17:56:22 +02:00

9 lines
244 B
SQL

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`),
UNIQUE INDEX `user` (`user`)
);