summaryrefslogtreecommitdiff
path: root/modules/actions/actions.schema
diff options
context:
space:
mode:
Diffstat (limited to 'modules/actions/actions.schema')
-rw-r--r--modules/actions/actions.schema2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/actions/actions.schema b/modules/actions/actions.schema
index 2e2ca9b28..516e2ced3 100644
--- a/modules/actions/actions.schema
+++ b/modules/actions/actions.schema
@@ -7,7 +7,7 @@ function actions_schema() {
'aid' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '0'),
'type' => array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => ''),
'callback' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
- 'parameters' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big', 'default' => ''),
+ 'parameters' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
'description' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '0'),
),
'primary key' => array('aid'),