Small unimportant detail.

The length of the "position" column was 255, when it's actually 1. This data isn't used anyway.
This commit is contained in:
Parziphal 2014-01-01 15:35:43 -05:00
parent cf9cba40b6
commit 444af49df4

View File

@ -54,7 +54,7 @@ return array (
), ),
'position' => 'position' =>
array ( array (
'type' => 'char(255)', 'type' => 'char(1)',
'default' => NULL, 'default' => NULL,
), ),
), ),