-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
117 lines (101 loc) · 3.46 KB
/
example.html
File metadata and controls
117 lines (101 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<table>
<tbody><tr>
<th>Campo</th>
<th>PK</th>
<th>FK</th>
<th>Unique</th>
<th>Tipo</th>
<th>Tam</th>
<th>Nullable</th>
<th>Default</th>
<th>Descrição</th>
</tr>
<tr>
<td> <strong>id</strong> </td>
<td style="text-align: center;">***</td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">***</td>
<td style="text-align: center;">integer</td>
<td> </td>
<td>False</td>
<td style="text-align: center;">-</td>
<td> Identificador da Tabela </td>
</tr>
<tr>
<td> <strong>container_id</strong> </td>
<td style="text-align: center;">-</td>
<td style="text-align: center;"><em>container_id</em></td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">integer</td>
<td>20</td>
<td>False</td>
<td style="text-align: center;">-</td>
<td> Relaciona a movimentação com o container. Normalização: o mesmo container é cadastrado somente uma única vez. </td>
</tr>
<tr>
<td> <strong>maritime_company_id</strong> </td>
<td style="text-align: center;">-</td>
<td style="text-align: center;"><em>registers</em></td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">integer</td>
<td> </td>
<td>True</td>
<td style="text-align: center;">-</td>
<td> Identifica a comanhia marítima. </td>
</tr>
<tr>
<td> <strong>entry_movement_id</strong> </td>
<td style="text-align: center;">-</td>
<td style="text-align: center;"><em>vehicle_movements</em></td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">integer</td>
<td> </td>
<td>False</td>
<td style="text-align: center;">-</td>
<td> Associa a entrada do container com a entrada do veículo que o trouxo. A partir dessa associação sabe-se qual a movimentação; dia e horário em que ocorreou; quem foi o motorista; qual o veículo. </td>
</tr>
<tr>
<td> <strong>exit_movement_id</strong> </td>
<td style="text-align: center;">-</td>
<td style="text-align: center;"><em>vehicle_movements</em></td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">integer</td>
<td> </td>
<td>True</td>
<td style="text-align: center;">-</td>
<td> Associa a saída do container com a saída do veículo que está levando o container. A partir dessa associação sabe-se qual a movimentação; dia e horário em que ocorreou; quem foi o motorista; qual o veículo. </td>
</tr>
<tr>
<td> <strong>user_id</strong> </td>
<td style="text-align: center;">-</td>
<td style="text-align: center;"><em>registers</em></td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">integer</td>
<td> </td>
<td>False</td>
<td style="text-align: center;">-</td>
<td> Usuário que fez a última alteração no registro. </td>
</tr>
<tr>
<td> <strong>created_at</strong> </td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">datetime</td>
<td> </td>
<td>False</td>
<td style="text-align: center;">-</td>
<td> Data de criação do registro. </td>
</tr>
<tr>
<td> <strong>updated_at</strong> </td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">datetime</td>
<td> </td>
<td>False</td>
<td style="text-align: center;">-</td>
<td> Data de atualização do registro. </td>
</tr>
</tbody></table>