database table template
This commit is contained in:
10
table_create.sql
Normal file
10
table_create.sql
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/*Table structure for table `cubetp` */
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `cubetp`;
|
||||||
|
|
||||||
|
CREATE TABLE `cubetp` (
|
||||||
|
`name` varchar(100) NOT NULL,
|
||||||
|
`x` int(10) NOT NULL,
|
||||||
|
`y` int(10) NOT NULL,
|
||||||
|
`z` int(10) NOT NULL
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||||
Reference in New Issue
Block a user