https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35451 --- Comment #44 from Martin Renvoize (ashimema) <martin.renvoize@ptfs-europe.com> --- (In reply to Victor Grousset/tuxayo from comment #28)
Comment on attachment 173421 [details] [review] Bug 35451: Add record_table to additional_field_values
Review of attachment 173421 [details] [review]: -----------------------------------------------------------------
::: installer/data/mysql/kohastructure.sql @@ +242,4 @@
CREATE TABLE `additional_field_values` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key identifier', `field_id` int(11) NOT NULL COMMENT 'foreign key references additional_fields(id)', + `record_table` varchar(255) NOT NULL DEFAULT '' COMMENT 'tablename of the related record',
Backticks, which should not be used https://wiki.koha-community.org/wiki/Coding_Guidelines#SQL6:_Backticks
But there are already on all other lines >_< So I don't know.
This isn't IN the table name.. it's quoting the table name.. which is correct as far as I'm aware. -- You are receiving this mail because: You are watching all bug changes.