create table comments (
id bigint primary key not null,
plant_id bigint not null
references plants (id)
on delete cascade,
comment text not null
);