CREATE TABLE translations ( id BIGINT NOT NULL AUTO_INCREMENT, lang_code CHAR(5) NOT NULL, item_id BIGINT NOT NULL, item_name VARCHAR(255) NOT NULL, item_desciption TEXT NULL, PRIMARY KEY(id) );