Closed (fixed)
Project:
Webform Validation
Version:
6.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Apr 2010 at 15:51 UTC
Updated:
22 May 2010 at 19:30 UTC
After installing webform_validation module I got the following error in the database schema comparison report (admin/build/schema/compare):
column ruleid - difference on: not null
declared: array('description' => t('TODO: please describe this field!'), 'type' => 'serial', 'unsigned' => TRUE)
actual: array('description' => t('TODO: please describe this field!'), 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE)
The error disappears if I add
'not null' => TRUE,
to the ruleid array of the webform_validation_schema() in webform_validation.install.
Comments
Comment #1
svendecabooterThanks for pointing that out. I have updated the .install file to fix this.