mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
23 lines
578 B
SQL
23 lines
578 B
SQL
create table FILIAL
|
|
(
|
|
id NUMBER not null,
|
|
title_ua VARCHAR2(128) not null,
|
|
title_ru VARCHAR2(128) not null,
|
|
title_eng VARCHAR2(128) not null,
|
|
remove_date DATE,
|
|
modify_date DATE,
|
|
modify_user VARCHAR2(128)
|
|
)
|
|
;
|
|
alter table FILIAL
|
|
add constraint PK_ID primary key (ID);
|
|
grant select on FILIAL to ATOLL;
|
|
grant select on FILIAL to CRAMER2GIS;
|
|
grant select on FILIAL to DMS;
|
|
grant select on FILIAL to HPSM2GIS;
|
|
grant select on FILIAL to PLANMONITOR;
|
|
grant select on FILIAL to SIEBEL;
|
|
grant select on FILIAL to VBIS;
|
|
grant select on FILIAL to VPORTAL;
|
|
|