blob: 014e101e6ef81d3549c46f0864114cf284fc5aa5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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,
usrgrpid bigint unsigned DEFAULT '0' NOT NULL,
groupid bigint unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (scriptid)
) type=InnoDB;
|