From 4ebcdca41e078d67afadc8667bb416cf7fe970c4 Mon Sep 17 00:00:00 2001 From: Harley Bussell Date: Thu, 4 Apr 2019 14:02:16 +1000 Subject: [PATCH] Update lcache.install Set tag field to not null as index fields can not be null. --- lcache.install | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lcache.install b/lcache.install index 701a68e..1e1d6e2 100644 --- a/lcache.install +++ b/lcache.install @@ -70,9 +70,8 @@ function lcache_schema() { 'description' => 'Cache tag.', 'type' => 'varchar', 'length' => 128, - 'not null' => FALSE, + 'not null' => TRUE, 'binary' => TRUE, - 'default' => NULL, ), 'event_id' => array( 'description' => 'The event_id associated with the cache entry.',