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
428 B
10 lines
428 B
4 years ago
|
CREATE TABLE `user` (
|
||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
|
`name` varchar(50) NOT NULL DEFAULT '',
|
||
|
`password` varchar(50) NOT NULL DEFAULT '',
|
||
|
`nickname` varchar(50) NOT NULL DEFAULT '',
|
||
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
`deleted_at` timestamp NULL DEFAULT NULL,
|
||
|
PRIMARY KEY (`id`)
|
||
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8
|