No errors when creating the first one?
CREATE TABLE wp_gp_originals (
id INT(10) NOT NULL auto_increment,
project_id INT(10) DEFAULT NULL,
context VARCHAR(255) DEFAULT NULL,
singular TEXT NOT NULL,
plural TEXT DEFAULT NULL,
<code>references</code> TEXT DEFAULT NULL,
comment TEXT DEFAULT NULL,
status VARCHAR(255) NOT NULL DEFAULT '+active',
priority TINYINT NOT NULL DEFAULT 0,
date_added DATETIME DEFAULT NULL,
PRIMARY KEY (id),
KEY project_id_status (project_id, status),
KEY singular_plural_context (singular(63), plural(63), context(63))
);