Skip to content

Commit 0aa07ac

Browse files
committed
add the table user create statement
add the table user create statement
1 parent 7be3c7a commit 0aa07ac

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

res/mysql/table.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CREATE TABLE `user` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(45) NOT NULL, `tel_number` varchar(20) NOT NULL, `password` varchar(20) NOT NULL, `email` varchar(50) DEFAULT NULL, `company_id` int(10) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8;

0 commit comments

Comments
 (0)