Commit 9b64738a5f5ea1b5bc5b388a2a2ca993b5adedb0
1 parent
ea275e51
Exists in
master
Adicionado migração para criar campo seção em area do conhecimento.
* Esta migração deveria ter sido adicionada no pull request portabilis/ieducar/pull/59
Showing
1 changed file
with
17 additions
and
0 deletions
Show diff stats
ieducar/misc/database/deltas/mytdt/1_adiciona_campo_secao_em_area_conhecimento.sql
0 → 100644
... | ... | @@ -0,0 +1,17 @@ |
1 | +-- // | |
2 | + | |
3 | +-- | |
4 | +-- Adiciona o campo secao na tabela area_conhecimento | |
5 | +-- | |
6 | +-- @author Thieres Tembra <tdt@mytdt.com.br> | |
7 | +-- @license @@license@@ | |
8 | +-- @version $Id$ | |
9 | +-- | |
10 | + | |
11 | + ALTER TABLE modules.area_conhecimento ADD COLUMN secao character varying(50); | |
12 | + | |
13 | +-- //@UNDO | |
14 | + | |
15 | + ALTER TABLE modules.area_conhecimento DROP COLUMN secao; | |
16 | + | |
17 | +-- // | ... | ... |