If you're using the two table method you'd just create another table with the same data as that one, then just transfer across with a SELECT then delete the row in the provisional table.
If you do want to use the verification flag then I've added the field at the end, but it could be anywhere.
CREATE TABLE ihsreg (
id int(10) unsigned NOT NULL auto_increment,
Bloom_Name text NOT NULL,
Pod_Name text NOT NULL,
Pollen_Name text NOT NULL,
Hybridiser text NOT NULL,
Origin text NOT NULL,
Grower text NOT NULL,
Color_Group text NOT NULL,
Bloom_Type text NOT NULL,
Reg_Mini text NOT NULL,
Size_Range text NOT NULL,
Propagation text NOT NULL,
Bloom_Color text NOT NULL,
Bloom_Characteristics text NOT NULL,
Leaf_Characteristics text NOT NULL,
Bush_Characteristics text NOT NULL,
Photo_Credit text NOT NULL,
Bloom_Image text NOT NULL,
Pod_Image text NOT NULL,
Pollen_Image text NOT NULL,
Hybridiser_Image text NOT NULL,
Leaf_Image text NOT NULL,
validated tinyint NOT NULL default 0,
PRIMARY KEY (id),
UNIQUE KEY bloom_index (Bloom_Name(30))
)