Skip to content

Commit

Permalink
merge develop
Browse files Browse the repository at this point in the history
  • Loading branch information
antoalconti committed Oct 23, 2024
2 parents 292c09a + c6b5b62 commit 8143543
Showing 1 changed file with 2 additions and 23 deletions.
25 changes: 2 additions & 23 deletions db/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,6 @@ SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: public; Type: SCHEMA; Schema: -; Owner: -
--

-- *not* creating schema, since initdb creates it


--
-- Name: pg_stat_statements; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS pg_stat_statements WITH SCHEMA public;


--
-- Name: EXTENSION pg_stat_statements; Type: COMMENT; Schema: -; Owner: -
--

COMMENT ON EXTENSION pg_stat_statements IS 'track planning and execution statistics of all SQL statements executed';


--
-- Name: pg_trgm; Type: EXTENSION; Schema: -; Owner: -
--
Expand Down Expand Up @@ -880,9 +859,9 @@ CREATE TABLE public.external_pull_requests (
external_repository_id bigint NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
number integer,
opened_at timestamp without time zone,
state public.external_pull_request_state,
number integer
state public.external_pull_request_state
);


Expand Down

0 comments on commit 8143543

Please sign in to comment.