Skip to content
This repository was archived by the owner on May 5, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions MICADO DB/Micado_DB_Schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,46 @@ CREATE TABLE micadoapp.document_type_validator (
COMMENT ON TABLE micadoapp.document_type_validator IS 'this table map all the organizations that are eligible to validate that tenant';


--
-- Name: info; Type: TABLE; Schema: micadoapp; Owner: -
--

CREATE TABLE micadoapp.info (
id smallint NOT NULL,
lang character varying(10) NOT NULL,
title character varying(20),
description text,
translation_date timestamp without time zone
);


--
-- Name: TABLE document_type_validator; Type: COMMENT; Schema: micadoapp; Owner: -
--

COMMENT ON TABLE micadoapp.info IS 'this table contains all the generic information that PAs make available to migrants';


--
-- Name: info_id_seq; Type: SEQUENCE; Schema: micadoapp; Owner: -
--

CREATE SEQUENCE micadoapp.info_id_seq
AS smallint
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;


--
-- Name: info_id_seq; Type: SEQUENCE OWNED BY; Schema: micadoapp; Owner: -
--

ALTER SEQUENCE micadoapp.info_id_seq OWNED BY micadoapp.info.id;


--
-- Name: event; Type: TABLE; Schema: micadoapp; Owner: -
--
Expand Down