... | ... | @@ -28,9 +28,9 @@ Optamos por criar um banco de dados relacional, tendo em vista que o banco possu |
|
|
|
|
|
### Modelo ER
|
|
|
|
|
|
![image](uploads/ea84f928452d2ec3574ec18ef00ca6e0/image.png)
|
|
|
![image](uploads/2dbad2c28570b026c46d7e174d910646/image.png)
|
|
|
|
|
|
Para ver com mais detalhes sobre este modelo, clique [aqui](https://dbdiagram.io/d/65f1b311b1f3d4062cd5d3b0)
|
|
|
Para ver com mais detalhes sobre este modelo, clique [aqui](https://dbdiagram.io/d/Copy-of-Untitled-Diagram-660c745903593b6b61017b26)
|
|
|
|
|
|
## Scripts de criação das tabelas
|
|
|
|
... | ... | @@ -42,6 +42,7 @@ Table clientes { |
|
|
cpf_cnpj varchar2 [not null, primary key]
|
|
|
email varchar2 [not null]
|
|
|
senha varchar2 [not null]
|
|
|
createdAt date [not null]
|
|
|
}
|
|
|
```
|
|
|
|
... | ... | @@ -51,6 +52,7 @@ Table pedidos { |
|
|
id_cliente integer [not null]
|
|
|
valor_total double [not null]
|
|
|
data date [not null]
|
|
|
createdAt date [not null]
|
|
|
}
|
|
|
```
|
|
|
|
... | ... | @@ -67,6 +69,8 @@ Table alimentos { |
|
|
categoria varchar2 [not null]
|
|
|
foto varchar2
|
|
|
cod_barras varchar2
|
|
|
createdAt date [not null]
|
|
|
deleted bool
|
|
|
}
|
|
|
```
|
|
|
|
... | ... | @@ -78,6 +82,7 @@ Table item_pedido { |
|
|
id_empresa integer [not null]
|
|
|
quantidade integer [not null]
|
|
|
preco_unitario double [not null]
|
|
|
createdAt date [not null]
|
|
|
}
|
|
|
```
|
|
|
|
... | ... | @@ -90,6 +95,7 @@ Table empresas { |
|
|
senha varchar2 [not null]
|
|
|
horario_comercial varchar2 [not null]
|
|
|
id_endereco integer [not null]
|
|
|
createdAt date [not null]
|
|
|
}
|
|
|
```
|
|
|
|
... | ... | @@ -104,6 +110,7 @@ Table enderecos { |
|
|
cep varchar2 [not null]
|
|
|
latitude double [not null]
|
|
|
longitude double [not null]
|
|
|
createdAt date [not null]
|
|
|
}
|
|
|
```
|
|
|
|
... | ... | |