Create destinations table
CREATE TABLE destinations ( destinationI_id int primary key, country varchar(40), location varchar(40), traveller int, foreign key (traveller) references travellers(traveller_id) );
Create destinations table
CREATE TABLE destinations ( destinationI_id int primary key, country varchar(40), location varchar(40), traveller int, foreign key (traveller) references travellers(traveller_id) );