Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue 14708 tinyint #14709

Merged
merged 7 commits into from
Jan 14, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adjusted assertions
  • Loading branch information
ruudboon committed Jan 14, 2020
commit 84908f2110200f302a468f4536e7fcb65ee82b54
4 changes: 2 additions & 2 deletions tests/_data/fixtures/Traits/Db/MysqlTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ protected function getColumns(): array
'primary' => false,
'first' => false,
'after' => 'field_bigint_default',
'bindType' => Column::BIND_PARAM_BOOL,
'bindType' => Column::BIND_PARAM_INT,
],
7 => [
'columnName' => 'field_boolean_default',
Expand All @@ -202,7 +202,7 @@ protected function getColumns(): array
'primary' => false,
'first' => false,
'after' => 'field_boolean',
'bindType' => Column::BIND_PARAM_BOOL,
'bindType' => Column::BIND_PARAM_INT,
],
8 => [
'columnName' => 'field_char',
Expand Down