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.
8 lines
257 B
8 lines
257 B
CREATE TABLE `users_table` (
|
|
`id` serial AUTO_INCREMENT NOT NULL,
|
|
`name` varchar(255) NOT NULL,
|
|
`age` int NOT NULL,
|
|
`email` varchar(255) NOT NULL,
|
|
CONSTRAINT `users_table_id` PRIMARY KEY(`id`),
|
|
CONSTRAINT `users_table_email_unique` UNIQUE(`email`)
|
|
);
|
|
|