From 3e98d07c423dda4464de36508429fd83d8a1c611 Mon Sep 17 00:00:00 2001 From: tipaul Date: Wed, 15 May 2002 12:17:35 +0000 Subject: [PATCH] Update of systempreferences table structure and admin script. Contains now a "help" fields that shows what param is supposed to do what. The params will be in the sample-DB. I've dumped the 3 I know. If there are others, let me know : INSERT INTO systempreferences VALUES ('template', 'french', 'Template default name. Not used for instance'); INSERT INTO systempreferences VALUES ('autoBarcode', '', '1 or else. If 1, Barcode is auto-calculated'); INSERT INTO systempreferences VALUES ('acquisitions', 'normal', 'normal or simple : will use acquisition system found in directory acqui.simple or acquisition'); --- database.mysql | 1 + 1 file changed, 1 insertion(+) diff --git a/database.mysql b/database.mysql index 3c37386e28..08ca2e3f08 100644 --- a/database.mysql +++ b/database.mysql @@ -779,6 +779,7 @@ CREATE TABLE stopwords ( CREATE TABLE systempreferences ( variable char(50) DEFAULT '' NOT NULL, value char(200), + explanation char(200) default '', PRIMARY KEY (variable) ); -- 2.39.5