Skip to content

Commit

Permalink
magento/magento2#NONE: Fix vault_payment_token install script type wh…
Browse files Browse the repository at this point in the history
…ere column defaults were not set (PR #12965 backport)
  • Loading branch information
p-bystritsky committed Jan 3, 2018
1 parent e738316 commit 3230447
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/code/Magento/Vault/Setup/InstallSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ public function install(SchemaSetupInterface $setup, ModuleContextInterface $con
'is_active',
Table::TYPE_BOOLEAN,
null,
['nullable' => false, 'dafault' => true],
['nullable' => false, 'default' => true],
'Is active flag'
)->addColumn(
'is_visible',
Table::TYPE_BOOLEAN,
null,
['nullable' => false, 'dafault' => true],
['nullable' => false, 'default' => true],
'Is visible flag'
)->addIndex(
$setup->getIdxName(
Expand Down

0 comments on commit 3230447

Please sign in to comment.