Skip to content

Commit

Permalink
Merge pull request #20 from tdeneke/master
Browse files Browse the repository at this point in the history
Add missing sql type definition
  • Loading branch information
zagganas authored Mar 5, 2021
2 parents 43ea830 + 80b74bf commit 6f7ee49
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions database_schema/schema_db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,30 @@ SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: hist_type; Type: TYPE; Schema: public; Owner: schema
--

CREATE TYPE public.hist_type AS ENUM (
'job',
'workflow'
);


ALTER TYPE public.hist_type OWNER TO schema;

--
-- Name: visibility_types; Type: TYPE; Schema: public; Owner: schema
--

CREATE TYPE public.visibility_types AS ENUM (
'private',
'public'
);


ALTER TYPE public.visibility_types OWNER TO schema;

SET default_tablespace = '';

SET default_table_access_method = heap;
Expand Down

0 comments on commit 6f7ee49

Please sign in to comment.