Skip to content

Commit 516434a

Browse files
authored
Create database.sql
1 parent 3de851f commit 516434a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

database.sql

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CREATE TABLE `members` (
2+
`id` int(11) NOT NULL AUTO_INCREMENT,
3+
`name` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
4+
`number` int(11) NOT NULL,
5+
`gb` int(11) NOT NULL,
6+
PRIMARY KEY (`id`)
7+
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

0 commit comments

Comments
 (0)