remover tabla locations ya que acordamos utilizar un unico string para la direccion

This commit is contained in:
Gabriel Paradiso
2019-12-13 16:35:11 +01:00
parent d21e86e5d1
commit 9d9acb11d9

View File

@@ -125,21 +125,6 @@ TABLESPACE pg_default;
ALTER TABLE myhealth.patient
OWNER to "USER";
-- Table: myhealth.location
-- DROP TABLE myhealth.location;
CREATE TABLE myhealth.location
(
id INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 MAXVALUE 2147483647 CACHE 1 ),
name VARCHAR(100) COLLATE pg_catalog."default" NOT NULL,
CONSTRAINT primarylocation_pkey PRIMARY KEY (id)
)
TABLESPACE pg_default;
ALTER TABLE myhealth.location
OWNER to "USER";
-- Table: myhealth.primaryhealthcarecenter
-- DROP TABLE myhealth.primaryhealthcarecenter;