Leonardo Vannucci
2019-09-24 c1e90412c1be8a95b5b93e77262330b436b44838
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
);