From c9ab5a308136358d65a593412af087136d3603ef Mon Sep 17 00:00:00 2001
From: Jorrit Schippers <jorrit@161217.no-reply.drupal.org>
Date: Mon, 14 Nov 2011 22:31:28 +0100
Subject: [PATCH] Issue #1151668 by Jorrit: Remove default values for text columns, it generated invalid (My)SQL statements.

---
 opengraph_meta.install |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/opengraph_meta.install b/opengraph_meta.install
index c86a1a4..2fa8268 100644
--- a/opengraph_meta.install
+++ b/opengraph_meta.install
@@ -54,7 +54,6 @@ function opengraph_meta_schema(){
           'type' => 'text',
           'not null' => TRUE,
           'size' => 'big',
-          'default' => '',
         ),
         OpenGraphMeta::IMAGE => array(
           'type' => 'varchar',
@@ -71,7 +70,6 @@ function opengraph_meta_schema(){
         OpenGraphMeta::__OPTIONAL_DB_FIELD => array(
           'type' => 'text',
           'not null' => FALSE,
-          'default' => '',
           'serialize' => TRUE,
         ),
       ),
-- 
1.7.4.1

