Skip to content

Commit

Permalink
Fix default value for permissions table
Browse files Browse the repository at this point in the history
  • Loading branch information
rijkvanzanten committed Sep 30, 2018
1 parent 076b1c4 commit a325244
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,36 +50,36 @@ public function change()
$table->addColumn('create', 'string', [
'signed' => false,
'null' => true,
'default' => null,
'default' => 'none',
'length' => 16,
]);
$table->addColumn('read', 'string', [
'signed' => false,
'null' => true,
'default' => null,
'default' => 'none',
'length' => 16,
]);
$table->addColumn('update', 'string', [
'signed' => false,
'null' => true,
'default' => null,
'default' => 'none',
'length' => 16,
]);
$table->addColumn('delete', 'string', [
'signed' => false,
'null' => true,
'default' => null,
'default' => 'none',
'length' => 16,
]);
$table->addColumn('comment', 'string', [
'limit' => 8,
'null' => true,
'default' => null
'default' => 'none'
]);
$table->addColumn('explain', 'string', [
'limit' => 8,
'null' => true,
'default' => null
'default' => 'none'
]);
$table->addColumn('read_field_blacklist', 'string', [
'limit' => 1000,
Expand Down

0 comments on commit a325244

Please sign in to comment.