soko-web/templates/database/database.sql.tpl
Pőcze Bence a17a88e9d4
All checks were successful
soko-web/pipeline/head This commit looks good
initial commit for soko-web
2023-04-07 19:32:15 +02:00

16 lines
577 B
Smarty

SET NAMES utf8mb4;
SET foreign_key_checks = 0;
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(100) NOT NULL,
`password` varchar(60) DEFAULT NULL,
`type` enum('user','admin') NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT 0,
`google_sub` varchar(255) CHARACTER SET ascii COLLATE ascii_bin DEFAULT NULL,
`created` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`),
UNIQUE KEY `google_sub` (`google_sub`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;