diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-07-24 17:24:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-07-24 17:24:02 +0000 |
commit | de9d0049a4c1bb02ab76dad82f321b278056e27f (patch) | |
tree | a15f9faf291c64e77c953c65c4a9e0997c612986 /modules/system/system.install | |
parent | 093f99a794e0ff6107fbd052560b0ecfb5ca623e (diff) | |
download | brdo-de9d0049a4c1bb02ab76dad82f321b278056e27f.tar.gz brdo-de9d0049a4c1bb02ab76dad82f321b278056e27f.tar.bz2 |
- Patch #800432 by marcingy: no index on {semaphore}.value.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 0b691a20d..c83bc60fe 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1380,7 +1380,10 @@ function system_schema() { 'not null' => TRUE ), ), - 'indexes' => array('value' => array('value')), + 'indexes' => array( + 'value' => array('value'), + 'expire' => array('expire'), + ), 'primary key' => array('name'), ); |