createTable('logo', [ 'id' => $this->primaryKey(), 'image_id' => $this->integer(), 'link' => $this->text(), 'sort' => $this->integer() ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('logo'); } }