Skip to content

Commit

Permalink
Update postgres version in travis build (#54)
Browse files Browse the repository at this point in the history
* Update postgres version in travis build to 11.6

this is the most recent posgres version available in RDS at the moment
  • Loading branch information
Elizabeth authored Feb 24, 2020
1 parent f3b3c36 commit 8f8dfee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
- postgresql
- docker
addons:
postgresql: '11.2'
postgresql: '11.6'
go_import_path: github.com/makerdao/vulcanizedb
before_install:
- make installtools
Expand Down
8 changes: 4 additions & 4 deletions db/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
-- PostgreSQL database dump
--

-- Dumped from database version 12.1
-- Dumped by pg_dump version 12.1
-- Dumped from database version 11.6
-- Dumped by pg_dump version 11.6

SET statement_timeout = 0;
SET lock_timeout = 0;
Expand Down Expand Up @@ -32,7 +32,7 @@ $$;

SET default_tablespace = '';

SET default_table_access_method = heap;
SET default_with_oids = false;

--
-- Name: addresses; Type: TABLE; Schema: public; Owner: -
Expand Down Expand Up @@ -662,7 +662,7 @@ CREATE INDEX transactions_header ON public.transactions USING btree (header_id);
-- Name: headers header_updated; Type: TRIGGER; Schema: public; Owner: -
--

CREATE TRIGGER header_updated BEFORE UPDATE ON public.headers FOR EACH ROW EXECUTE FUNCTION public.set_header_updated();
CREATE TRIGGER header_updated BEFORE UPDATE ON public.headers FOR EACH ROW EXECUTE PROCEDURE public.set_header_updated();


--
Expand Down

0 comments on commit 8f8dfee

Please sign in to comment.