);
+--
+-- Name: release_monitorings; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.release_monitorings (
+ id integer NOT NULL,
+ distro_id integer NOT NULL,
+ name text NOT NULL,
+ created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
+ created_by integer NOT NULL,
+ deleted_at timestamp without time zone,
+ deleted_by integer,
+ project_id integer NOT NULL,
+ follow text NOT NULL,
+ last_check_at timestamp without time zone,
+ create_builds boolean DEFAULT true NOT NULL
+);
+
+
--
-- Name: repository_builds; Type: TABLE; Schema: public; Owner: -
--
ALTER SEQUENCE public.release_monitoring_releases_id_seq OWNED BY public.release_monitoring_releases.id;
---
--- Name: release_monitorings; Type: TABLE; Schema: public; Owner: -
---
-
-CREATE TABLE public.release_monitorings (
- id integer NOT NULL,
- distro_id integer NOT NULL,
- name text NOT NULL,
- created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
- created_by integer NOT NULL,
- deleted_at timestamp without time zone,
- deleted_by integer,
- project_id integer NOT NULL,
- follow text NOT NULL,
- last_check_at timestamp without time zone,
- create_builds boolean DEFAULT true NOT NULL
-);
-
-
--
-- Name: release_monitorings_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--