Commit 25446dca by jackzhou

创建数据表的sql

parent 8ca0bc3b
......@@ -31,6 +31,18 @@ CREATE TABLE `leakCanary` (
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
CREATE TABLE `carton` (
`id` int(10) unsigned NOT NULL auto_increment,
`className` text NOT NULL,
`contentJson` text NOT NULL,
`modulePackage` text NOT NULL,
`isHandle` varchar(64) NOT NULL,
`gitCommitHash` text NOT NULL,
`gitCurrentBranch` text NOT NULL,
`addtime` date NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- 导出表中的数据 `news`
--
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment