Hi there ...
today i looked at the schema module again for some development purposes, and found that the FillPDF tables have a small mismatch in declaration.
*
fillpdf_forms
o column fid - difference on: length
declared: array('description' => t('TODO: beschreibe dieses Feld!'), 'type' => 'int', 'unsigned' => TRUE, 'length' => 10, 'not null' => TRUE)
actual: array('description' => t('TODO: beschreibe dieses Feld!'), 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE)
*
fillpdf_fields
o column fid - difference on: length
declared: array('description' => t('TODO: beschreibe dieses Feld!'), 'type' => 'int', 'unsigned' => TRUE, 'length' => 10, 'not null' => TRUE)
actual: array('description' => t('TODO: beschreibe dieses Feld!'), 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE)
Just wanted to point that out ... surely not a big thing to correct.
Comments
Comment #2
wizonesolutionsNo error here, just database-specific behavior. Won't change it unless it causes a verifiable problem.
Comment #3
wizonesolutionsActually, I did fix this with the patch in #897202: Fix cross-database compatibility in schema (e.g. PostgreSQL).