CREATE TABLE `entity_b` (`id` BIGINT NOT NULL,`some_field` TEXT NOT NULL,`some_other_entity_id` BIGINT NOT NULL,`some_array` TEXT NOT NULL,CONSTRAINT `entityb_id_pk` PRIMARY KEY (`id`),CONSTRAINT `entityb_some_other_entity_id_fk` FOREIGN KEY (`some_other_entity_id`) REFERENCES entity_a (id)); ;