Replace default value false -> 0

This commit is contained in:
Konstantin Vorobyev 2017-02-16 21:40:45 +09:00
parent ac73d076e8
commit 9264fefe20
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class BoardModel extends Base
'title' => $column_name,
'task_limit' => 0,
'description' => '',
'hide_in_dashboard' => false,
'hide_in_dashboard' => 0,
);
}
}