From: Ant Zucaro Date: Thu, 17 Mar 2016 00:23:18 +0000 (-0400) Subject: Fix typos. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8dc27f4233a61a93152f8b4b1b16de3e713d943e;p=xonotic%2Fxonstatdb.git Fix typos. --- diff --git a/README.md b/README.md index 218be67..d86430c 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Create the schema in which all of the xonstat tables will reside: CREATE SCHEMA xonstat AUTHORIZATION xonstat; -Create the pgplsql language, if it doesn't exist: +Create the plpgsql language, if it doesn't exist: CREATE LANGUAGE plpgsql; diff --git a/tables/active_maps_mv.sql b/tables/active_maps_mv.sql deleted file mode 100755 index aeaccbc..0000000 --- a/tables/active_maps_mv.sql +++ /dev/null @@ -1,10 +0,0 @@ -create table active_maps_mv( - sort_order integer, - map_id bigint, - map_name character varying(128), - games integer, - create_dt timestamp without time zone default (now() at time zone 'UTC'), - CONSTRAINT active_maps_mv_pk PRIMARY KEY (sort_order) -); - -ALTER TABLE xonstat.active_maps_mv OWNER TO xonstat; diff --git a/tables/active_maps_mv.tab b/tables/active_maps_mv.tab new file mode 100755 index 0000000..aeaccbc --- /dev/null +++ b/tables/active_maps_mv.tab @@ -0,0 +1,10 @@ +create table active_maps_mv( + sort_order integer, + map_id bigint, + map_name character varying(128), + games integer, + create_dt timestamp without time zone default (now() at time zone 'UTC'), + CONSTRAINT active_maps_mv_pk PRIMARY KEY (sort_order) +); + +ALTER TABLE xonstat.active_maps_mv OWNER TO xonstat;