This commit is contained in:
Keith Davis 2016-11-24 01:09:23 +00:00 committed by GitHub
commit af6c900263

View file

@ -10,7 +10,7 @@ class ArchiveProject extends AbstractMigration
public function up()
{
$project = $this->table('project');
$project->addColumn('archived', 'boolean');
$project->addColumn('archived', 'boolean', array('default' => 0));
$project->save();
}