From d213a3d47a9a73d52643137eef4c485c1dc13412 Mon Sep 17 00:00:00 2001 From: mikx Date: Sun, 26 Nov 2023 00:11:22 -0500 Subject: [PATCH] database table template --- table_create.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 table_create.sql 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;