Leonardo Vannucci
2019-04-30 d50b201eb6593d5090e3cad496895ced88a5a7c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- Table: public.reg_document
alter table public.reg_document
   ADD COLUMN custom_key VARCHAR(512);
 
create index NDX_REGDOC_CREATEDBY on public.reg_document (
   createdby
);
create index NDX_REGDOC_HASH on public.reg_document (
   file_hash
);
create index NDX_REGDOC_FILE_NAME on public.reg_document (
   file_name
);
create index NDX_REGDOC_CUSTOM_KEY on public.reg_document (
   custom_key
);