update schema

This commit is contained in:
Paul Trowbridge 2017-10-26 20:01:26 -04:00
parent 3486281c7c
commit 6a97c5ca69
2 changed files with 2659 additions and 2673 deletions

File diff suppressed because it is too large Load Diff

View File

@ -63,20 +63,6 @@ CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
--
-- Name: plprofiler; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS plprofiler WITH SCHEMA public;
--
-- Name: EXTENSION plprofiler; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION plprofiler IS 'server-side support for profiling PL/pgSQL functions';
SET search_path = bank, pg_catalog; SET search_path = bank, pg_catalog;
-- --
@ -108,7 +94,7 @@ CREATE TYPE dcard AS (
"Trans. Date" date, "Trans. Date" date,
"Post Date" date, "Post Date" date,
"Description" text, "Description" text,
"Amount" text, "Amount" numeric,
"Category" text "Category" text
); );