forked from rongchao/epmet-cloud-rizhao
5 changed files with 28 additions and 2 deletions
@ -0,0 +1,5 @@ |
|||
CREATE TABLE `demo_t` ( |
|||
`device_id` bigint(11) NOT NULL AUTO_INCREMENT, |
|||
`device_name` varchar(20) NOT NULL, |
|||
PRIMARY KEY (`device_id`) |
|||
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4; |
@ -0,0 +1,2 @@ |
|||
INSERT INTO demo_t (device_name) VALUES ('a'); |
|||
INSERT INTO demo_t (device_name) VALUES ('b'); |
Loading…
Reference in new issue