Skip to content
Snippets Groups Projects
Commit a51bb9c2 authored by kevin.dezaphi's avatar kevin.dezaphi
Browse files

FIX #8525 change structure of columntext parameter

parent ca81b504
No related branches found
No related tags found
No related merge requests found
......@@ -540,4 +540,6 @@ INSERT INTO status (id, label_status, is_system, img_filename, maarch_module, ca
DELETE FROM parameters WHERE id = 'homepage_message';
INSERT INTO parameters (id, description, param_value_string) VALUES ('homepage_message', 'Texte apparaissant dans la bannière sur la page d''accueil, mettre un espace pour supprimer la bannière.', 'Bienvenue dans votre <b>G</b>estion <b>E</b>lectronique du <b>C</b>ourrier.');
\ No newline at end of file
INSERT INTO parameters (id, description, param_value_string) VALUES ('homepage_message', 'Texte apparaissant dans la bannière sur la page d''accueil, mettre un espace pour supprimer la bannière.', 'Bienvenue dans votre <b>G</b>estion <b>E</b>lectronique du <b>C</b>ourrier.');
ALTER TABLE parameters ALTER COLUMN param_value_string TYPE TEXT;
\ No newline at end of file
......@@ -135,7 +135,7 @@ CREATE TABLE parameters
(
id character varying(255) NOT NULL,
description TEXT,
param_value_string character varying(255) DEFAULT NULL::character varying,
param_value_string TEXT DEFAULT NULL::character varying,
param_value_int integer,
param_value_date timestamp without time zone,
CONSTRAINT parameters_pkey PRIMARY KEY (id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment