Interbase один-ко-многим
Помогите установить связь один-ко-многим в IB
create table master(
id integer not null primary key,
name varchar(100),
...
);
create table detail(
id integer not null primary key,
m_id integer not null,
...,
/* ВОТ ОНО !!!!*/
constraint fkdetail2master
foreign key(m_id) references master(id)
on update cascade
on delete cascade
);