Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
HaGuesto committed Jan 30, 2021
1 parent c05c5e3 commit 3c46c0f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions db/migrations/20210130175622_add_settings_for_bases.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ class AddSettingsForBases extends AbstractMigration
public function change()
{
$this->table('camps')
->addColumn('beneficiaryisregistered', 'boolean', ['default' => 1, 'null' => false])
->addColumn('beneficiaryisvolunteer', 'boolean', ['default' => 1, 'null' => false])
->addColumn('separateshopandwhproducts', 'boolean', ['default' => 0, 'null' => false])
->save()
->addColumn('beneficiaryisregistered', 'boolean', ['default' => 1, 'null' => false])
->addColumn('beneficiaryisvolunteer', 'boolean', ['default' => 1, 'null' => false])
->addColumn('separateshopandwhproducts', 'boolean', ['default' => 0, 'null' => false])
->save()
;
}
}

0 comments on commit 3c46c0f

Please sign in to comment.