Compatibility with postgresql 8.1
This commit is contained in:
parent
cd96d07c1e
commit
49e8ec0438
1 changed files with 2 additions and 1 deletions
|
|
@ -34,7 +34,8 @@ create table jrn_info (
|
|||
);
|
||||
alter table jrn_info add constraint fk_jrn foreign key (jr_id) references jrn(jr_id) on delete cascade on update cascade;
|
||||
alter table jrn_info add constraint fk_info_def foreign key (id_type) references info_def(id_type) on delete cascade on update cascade;
|
||||
insert into info_def values ('BON_COMMANDE','Numero de bon de commande') ,('OTHER','Info diverses');
|
||||
insert into info_def values ('BON_COMMANDE','Numero de bon de commande') ;
|
||||
insert into info_def values ('OTHER','Info diverses');
|
||||
insert into attr_def values(30,'Numero de client');
|
||||
update version set val=40;
|
||||
commit;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue