blob: 7a6823b4225a8f05434afe23231bc75689876103 (
plain)
1
2
3
4
5
6
7
|
CREATE TABLE scripts (
scriptid bigint unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
command varchar(255) DEFAULT '' NOT NULL,
host_access integer DEFAULT '0' NOT NULL,
PRIMARY KEY (scriptid)
) type=InnoDB;
|