mirror of
https://github.com/p08dev/Bloggr.git
synced 2026-06-17 12:43:56 +02:00
13 lines
650 B
SQL
13 lines
650 B
SQL
CREATE TABLE IF NOT EXISTS `users` (
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
`email` varchar(249) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`password` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_cs NOT NULL,
|
|
`username` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
`verified` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
|
`roles_mask` int(10) unsigned NOT NULL DEFAULT '0',
|
|
`registered` int(10) unsigned NOT NULL,
|
|
`last_login` int(10) unsigned DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `email` (`email`),
|
|
UNIQUE KEY `username` (`username`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |