Skip to content

Commit 96970e6

Browse files
committed
adding sql file
1 parent 64aa8bb commit 96970e6

File tree

3 files changed

+102
-1
lines changed

3 files changed

+102
-1
lines changed

SampleDBs/architect.sqlite

32 KB
Binary file not shown.

SampleDBs/bercario_create.sql

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
-- Created by Vertabelo (http://vertabelo.com)
2+
-- Last modification date: 2021-01-30 13:05:04.309
3+
4+
-- tables
5+
-- Table: bebe
6+
CREATE TABLE bebe (
7+
id serial NOT NULL,
8+
id_mae int NOT NULL,
9+
id_medico int NOT NULL,
10+
nome_bebe varchar(60) NOT NULL,
11+
data_nasc_bebe date NOT NULL,
12+
altura_nasc_bebe int NOT NULL,
13+
peso_nasc_bebe int NOT NULL,
14+
CONSTRAINT bebe_pk PRIMARY KEY (id)
15+
);
16+
17+
-- Table: especialidades
18+
CREATE TABLE especialidades (
19+
id serial NOT NULL,
20+
nome_especialidade varchar(60) NOT NULL,
21+
CONSTRAINT especialidades_pk PRIMARY KEY (id)
22+
);
23+
24+
-- Table: maeid
25+
CREATE TABLE mae (
26+
id serial NOT NULL,
27+
nome_mae varchar(1500) NOT NULL,
28+
logradouro varchar(60) NOT NULL,
29+
numero varchar(20) NOT NULL,
30+
cep char(8) NOT NULL,
31+
data_nascimento_mae date NOT NULL,
32+
CONSTRAINT mae_pk PRIMARY KEY (id)
33+
);
34+
35+
-- Table: medico
36+
CREATE TABLE medico (
37+
id serial NOT NULL,
38+
CRM char(10) NOT NULL,
39+
nome varchar(60) NOT NULL,
40+
id_especialidade int NOT NULL,
41+
CONSTRAINT medico_pk PRIMARY KEY (id)
42+
);
43+
44+
-- Table: telefone_mae
45+
CREATE TABLE telefone_mae (
46+
id serial NOT NULL,
47+
id_mae int NOT NULL,
48+
telefone varchar(13) NOT NULL,
49+
CONSTRAINT telefone_mae_pk PRIMARY KEY (id)
50+
);
51+
52+
-- Table: telefone_medico
53+
CREATE TABLE telefone_medico (
54+
id serial NOT NULL,
55+
medico_id int NOT NULL,
56+
telefone varchar(13) NOT NULL,
57+
CONSTRAINT telefone_medico_pk PRIMARY KEY (id)
58+
);
59+
60+
-- foreign keys
61+
-- Reference: bebe_mae (table: bebe)
62+
ALTER TABLE bebe ADD CONSTRAINT bebe_mae
63+
FOREIGN KEY (id_mae)
64+
REFERENCES mae (id)
65+
NOT DEFERRABLE
66+
INITIALLY IMMEDIATE
67+
;
68+
69+
-- Reference: bebe_medico (table: bebe)
70+
ALTER TABLE bebe ADD CONSTRAINT bebe_medico
71+
FOREIGN KEY (id_medico)
72+
REFERENCES medico (id)
73+
NOT DEFERRABLE
74+
INITIALLY IMMEDIATE
75+
;
76+
77+
-- Reference: medico_especialidades (table: medico)
78+
ALTER TABLE medico ADD CONSTRAINT medico_especialidades
79+
FOREIGN KEY (id_especialidade)
80+
REFERENCES especialidades (id)
81+
NOT DEFERRABLE
82+
INITIALLY IMMEDIATE
83+
;
84+
85+
-- Reference: telefone_mae (table: telefone_mae)
86+
ALTER TABLE telefone_mae ADD CONSTRAINT telefone_mae
87+
FOREIGN KEY (id_mae)
88+
REFERENCES mae (id)
89+
NOT DEFERRABLE
90+
INITIALLY IMMEDIATE
91+
;
92+
93+
-- Reference: telefone_medico_medico (table: telefone_medico)
94+
ALTER TABLE telefone_medico ADD CONSTRAINT telefone_medico_medico
95+
FOREIGN KEY (medico_id)
96+
REFERENCES medico (id)
97+
NOT DEFERRABLE
98+
INITIALLY IMMEDIATE
99+
;
100+
101+
-- End of file.
102+

SampleDBs/t.sql

-1
This file was deleted.

0 commit comments

Comments
 (0)