diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-10-23 00:43:48 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-10-23 00:43:48 +0000 |
commit | 85dd04fec51a64b4f7bc9ede93b313b3d5daf8ef (patch) | |
tree | bcc2bc797df2450b6882ab46bb3cf3daf526fd97 | |
parent | 969135b3d50d11a4e37f9e0de9b7c1f896550948 (diff) | |
download | brdo-85dd04fec51a64b4f7bc9ede93b313b3d5daf8ef.tar.gz brdo-85dd04fec51a64b4f7bc9ede93b313b3d5daf8ef.tar.bz2 |
#934050 follow-up by chx: Primary keys cannot be null.
-rw-r--r-- | modules/filter/filter.install | 4 |
1 files changed, 2 insertions, 2 deletions
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.', )); } |