createTable('tile', [ 'id' => $this->primaryKey(), 'status' => $this->boolean(), 'sort' => $this->smallInteger(), 'image_id' => $this->integer(), ]); $this->addForeignKey( 'fk-tile-image_id', 'tile', 'image_id', 'ImageManager', 'id', 'CASCADE' ); } /** * @inheritdoc */ public function down() { $this->dropForeignKey( 'fk-tile-image_id', 'tile' ); $this->dropTable('tile'); } }