Skip to content

Commit

Permalink
Plugin: BuyCourse fix installation due to variable type incorrect -re…
Browse files Browse the repository at this point in the history
…fs BT#19213
  • Loading branch information
NicoDucou committed Oct 1, 2021
1 parent d7dd805 commit b4fec93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/buycourses/database.php
Expand Up @@ -447,7 +447,7 @@
$couponTable->addColumn('valid_start', Types::DATETIME_MUTABLE);
$couponTable->addColumn('valid_end', Types::DATETIME_MUTABLE);
$couponTable->addColumn('delivered', Types::INTEGER);
$couponTable->addColumn('active', Types::TINYINT);
$couponTable->addColumn('active', Types::BOOLEAN);
$couponTable->setPrimaryKey(['id']);
}

Expand Down

0 comments on commit b4fec93

Please sign in to comment.