Merge branch 'docker' into 'master'

Docker env

See merge request pds19-grupo2/myhealth!2
This commit is contained in:
Marcos Garcia Nuñez
2019-12-21 10:21:04 +01:00
8 changed files with 772 additions and 2 deletions

View File

@@ -129,7 +129,7 @@ CREATE TABLE myhealth.medicalspecialty
)
TABLESPACE pg_default;
-- Table: myhealth.patient
-- Table: myhealth.patient
CREATE TABLE myhealth.patient
(
id INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 MAXVALUE 2147483647 CACHE 1 ),
@@ -231,4 +231,4 @@ GRANT ALL ON myhealth.question to usrmyhealth;
GRANT ALL ON myhealth.medicaltest to usrmyhealth;
END;
$$
$$