summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.schema4
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/system/system.schema b/modules/system/system.schema
index 2df482d2e..e8c6c829c 100644
--- a/modules/system/system.schema
+++ b/modules/system/system.schema
@@ -129,11 +129,9 @@ function system_schema() {
'fields' => array(
'name' => array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => ''),
'value' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
- 'language' => array('type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => '')
),
- 'primary key' => array('name', 'language'),
+ 'primary key' => array('name'),
);
return $schema;
}
-