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