alter table orders add constraint FK_CUSTOMER foreign key (customer_id) references customers(id);
alter table orders add constraint FK_CUSTOMER foreign key (customer_id) references customers(id) on delete cascade on update cascade;