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