Skip to content

Commit

Permalink
MAGETWO-86343: magento/magento2#NONE: Fix vault_payment_token install…
Browse files Browse the repository at this point in the history
… script type where column defaults were not set (PR #12965 backport 2.1) #1149
  • Loading branch information
Oleksii Korshenko authored Jan 8, 2018
2 parents 53d0dab + 97add94 commit 9da32c7
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 9da32c7

Please sign in to comment.