You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
webmagic/webmagic-avalon/sql/create-tables.sql

9 lines
312 B
SQL

CREATE TABLE `DynamicClass` (
`Id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`ClassName` varchar(20) NOT NULL,
`SourceCode` text NOT NULL,
`AddTime` datetime NOT NULL,
`UpdateTime` datetime NOT NULL,
PRIMARY KEY (`Id`),
UNIQUE KEY `un_class_name` (`ClassName`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;