leonardovannucci
2022-04-01 c8a8b0375eaf98ba7485983bd07fbfe2186a0dd3
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
);