You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
403 B
10 lines
403 B
CREATE TABLE `users` (
|
|
`id` serial AUTO_INCREMENT NOT NULL,
|
|
`username` varchar(64) NOT NULL,
|
|
`email` varchar(255) NOT NULL,
|
|
`password_hash` varchar(255) NOT NULL,
|
|
`is_active` boolean NOT NULL DEFAULT true,
|
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
CONSTRAINT `users_id` PRIMARY KEY(`id`)
|
|
);
|
|
|