From 85dd04fec51a64b4f7bc9ede93b313b3d5daf8ef Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sat, 23 Oct 2010 00:43:48 +0000 Subject: #934050 follow-up by chx: Primary keys cannot be null. --- modules/filter/filter.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/filter/filter.install b/modules/filter/filter.install index 8a445a980..f8850ad46 100644 --- a/modules/filter/filter.install +++ b/modules/filter/filter.install @@ -16,7 +16,7 @@ function filter_schema() { 'format' => array( 'type' => 'varchar', 'length' => 255, - 'not null' => FALSE, + 'not null' => TRUE, 'description' => 'Foreign key: The {filter_format}.format to which this filter is assigned.', ), 'module' => array( @@ -484,7 +484,7 @@ function filter_update_7010() { db_change_field('filter', 'format', 'format', array( 'type' => 'varchar', 'length' => 255, - 'not null' => FALSE, + 'not null' => TRUE, 'description' => 'Foreign key: The {filter_format}.format to which this filter is assigned.', )); } -- cgit v1.2.3