From 444af49df4f48e61211b045d8375cf844e270ab0 Mon Sep 17 00:00:00 2001 From: Parziphal Date: Wed, 1 Jan 2014 15:35:43 -0500 Subject: [PATCH] Small unimportant detail. The length of the "position" column was 255, when it's actually 1. This data isn't used anyway. --- db/table_schema/production/advertisements.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/table_schema/production/advertisements.php b/db/table_schema/production/advertisements.php index 251e529..24fffb9 100644 --- a/db/table_schema/production/advertisements.php +++ b/db/table_schema/production/advertisements.php @@ -54,7 +54,7 @@ return array ( ), 'position' => array ( - 'type' => 'char(255)', + 'type' => 'char(1)', 'default' => NULL, ), ),