thesis/project/migrations/2020-04-04-120638_create_users/up.sql

9 lines
252 B
MySQL
Raw Normal View History

2020-03-30 14:41:46 +03:00
CREATE TABLE users (
`id` int NOT NULL AUTO_INCREMENT,
2020-04-02 20:07:03 +03:00
`username` varchar(100) UNIQUE NOT NULL,
`password` varchar(128) NOT NULL,
`admin` boolean NOT NULL,
`created_at` timestamp NOT NULL,
2020-03-30 14:41:46 +03:00
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;