Active
Project:
Term Queue
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Mar 2009 at 15:50 UTC
Updated:
5 Oct 2010 at 12:02 UTC
Just remove one line...
--- term_queue/term_queue.install 2008-09-25 13:56:55.000000000 -0400
+++ term_queue.install 2009-03-02 10:34:33.000000000 -0500
@@ -41,7 +41,6 @@
),
'description' => array(
'type' => 'text',
- 'length' => 255,
'not null' => TRUE,
'description' => t('The description of a queue')
),
Comments
Comment #1
mvfavila commentedThat did not work for me.
I have made some other changes in the term_queue.install and it is now working fine. Here is what I did:
This is the original code:
'description' => array(
'type' => 'text',
'length' => 255,
'not null' => TRUE,
'description' => t('The description of a queue')
),
Changing some code lines, I got this:
'description' => array(
'type' => 'text',
'not null' => TRUE,
'size' => 'big',
'description' => t('The description of a queue')
),
For some reason it did not work in projects that I have already tried to install the module but it works just fine in first time term queue module install
Hope it works for you too.
ps: sorry for my poor english