From 3d82ed0abd8bcd5bfe8f387052a5632346b83ff5 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 --- 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 9a0d454..1ea1dd0 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -3157,7 +3157,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.1.4