]> de.git.xonotic.org Git - xonotic/xonstatdb.git/blob - tables/servers.tab
Update README
[xonotic/xonstatdb.git] / tables / servers.tab
1 CREATE TABLE xonstat.servers
2 (
3   server_id serial NOT NULL,
4   "name" character varying(64),
5   "location" character varying(100),
6   ip_addr character varying(32),
7   max_players integer,
8   pure_ind boolean NOT NULL DEFAULT true,
9   active_ind boolean NOT NULL DEFAULT true,
10   create_dt timestamp without time zone NOT NULL,
11   CONSTRAINT servers_pk PRIMARY KEY (server_id)
12 )
13 WITH (
14   OIDS=FALSE
15 );
16 ALTER TABLE xonstat.servers OWNER TO xonstat;