Closed (fixed)
Project:
FillPDF
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Nov 2010 at 20:08 UTC
Updated:
3 Jan 2014 at 02:41 UTC
Jump to comment: Most recent
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).