diff --git a/table_create.sql b/table_create.sql new file mode 100644 index 0000000..cf6b4c8 --- /dev/null +++ b/table_create.sql @@ -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;