diff options
-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.', )); } |