database table template

This commit is contained in:
mikx 2023-11-26 00:11:22 -05:00
parent cb62c62831
commit d213a3d47a
1 changed files with 10 additions and 0 deletions

10
table_create.sql Normal file
View 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;