On module activation when using sqlite as db storage, the module fails to install. Issue is that item_id is defined as serial, while the primary key for the table is array('item_id', 'tag'), which leads sqlite to just mess up during the table creation.
Schema for the 'advancedqueue_tags' table seems to be wrong as 'item_id' should be defined as 'int' rather than 'serial' (since it's somewhat a foreign key).
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | fix_for_db_type-1445398.patch | 475 bytes | laurentchardin |
Comments
Comment #1
laurentchardin commentedSmall patch attached.
Comment #2
damien tournoud commentedMerged into 7.x-1.x.