Skip to content

Commit

Permalink
Make interaction_position MEDIUMINT to prevent Numeric value out of r…
Browse files Browse the repository at this point in the history
…ange: 1264 Out of range value for column 'interaction_position'

fixes #11058
  • Loading branch information
mattab committed Dec 26, 2016
1 parent c5de13d commit 6230f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/Actions/Columns/InteractionPosition.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class InteractionPosition extends ActionDimension
{
protected $columnName = 'interaction_position';
protected $columnType = 'SMALLINT UNSIGNED DEFAULT NULL';
protected $columnType = 'MEDIUMINT UNSIGNED DEFAULT NULL';

/**
* @param Request $request
Expand Down

0 comments on commit 6230f0b

Please sign in to comment.