create table plants (
id integer primary key not null,
name text not null,
species text not null,
description text not null
);