createTable('ImageManagerLang', [ 'image_id' => $this->integer(), 'language_id' => $this->integer(), 'title' => $this->string(), 'alt' => $this->string(), 'description' => $this->string(), ]); $this->createIndex( 'imageManagerIndexLang', 'ImageManagerLang', ['image_id', 'language_id'], true ); } /** * @inheritdoc */ public function down() { $this->dropIndex('imageManagerIndexLang', "ImageManagerLang"); $this->dropTable('ImageManagerLang'); } }