summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/mysql/patch/dservices.sql
blob: 9c8fc2b2bd586928a1c7acd973fd2ed07f1c84cc (plain)
1
2
3
4
5
6
7
8
9
10
11
CREATE TABLE dservices (
        dserviceid              bigint unsigned         DEFAULT '0'     NOT NULL,
        dhostid         bigint unsigned         DEFAULT '0'     NOT NULL,
        type            integer         DEFAULT '0'     NOT NULL,
        port            integer         DEFAULT '0'     NOT NULL,
        status          integer         DEFAULT '0'     NOT NULL,
        lastup          integer         DEFAULT '0'     NOT NULL,
        lastdown        integer         DEFAULT '0'     NOT NULL,
        eventsent       integer         DEFAULT '0'     NOT NULL,
        PRIMARY KEY (dserviceid)
) type=InnoDB;