Files
kr-phim/server/database/migrations/0003_slow_masked_marvel.sql
T

14 lines
471 B
SQL
Raw Normal View History

CREATE TABLE `users` (
`id` int AUTO_INCREMENT NOT NULL,
`name` varchar(200),
`email` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`role` varchar(50) NOT NULL DEFAULT 'user',
`avatar` text,
`active` boolean NOT NULL DEFAULT true,
`created_at` timestamp NOT NULL DEFAULT (now()),
`updated_at` timestamp NOT NULL DEFAULT (now()) ON UPDATE CURRENT_TIMESTAMP,
CONSTRAINT `users_id` PRIMARY KEY(`id`),
CONSTRAINT `users_email_unique` UNIQUE(`email`)
);