Ok so I have 3 tables.
CREATE TABLE `locations` ( `location_id` INTEGER AUTO_INCREMENT NOT NULL, `name` TEXT NOT NULL, PRIMARY KEY (`location_id`) ); <