Skip to content

Commit 72ba056

Browse files
committed
Initial commit
0 parents  commit 72ba056

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

create_user_table.sql

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
CREATE TABLE `users` (
2+
`id` int(11) NOT NULL AUTO_INCREMENT,
3+
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
4+
`email` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
5+
`phone` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
6+
`created` datetime NOT NULL,
7+
`modified` datetime NOT NULL,
8+
PRIMARY KEY (`id`)
9+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

0 commit comments

Comments
 (0)