From a60ae5caa5ff7f04e0ae02f67597ffff9addf9d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9verine=20QUEUNE?= Date: Fri, 8 Nov 2019 14:22:18 +0100 Subject: [PATCH] Bug 23932: Typo on 'aqinvoice_adjustments.encumber_open' description in Koha Schema Correct a typo in Koha Schema comment. finds --> funds Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- installer/data/mysql/kohastructure.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 15e13047af..67495ab962 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -3156,7 +3156,7 @@ CREATE TABLE aqinvoice_adjustments ( reason varchar(80) default NULL, -- reason for adjustment defined by authorised values in ADJ_REASON category note mediumtext default NULL, -- text to explain adjustment budget_id int(11) default NULL, -- optional link to budget to apply adjustment to - encumber_open smallint(1) NOT NULL default 1, -- whether or not to encumber the finds when invoice is still open, 1 = yes, 0 = no + encumber_open smallint(1) NOT NULL default 1, -- whether or not to encumber the funds when invoice is still open, 1 = yes, 0 = no timestamp timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- timestamp of last adjustment to adjustment PRIMARY KEY (adjustment_id), CONSTRAINT aqinvoice_adjustments_fk_invoiceid FOREIGN KEY (invoiceid) REFERENCES aqinvoices (invoiceid) ON DELETE CASCADE ON UPDATE CASCADE, -- 2.11.0