altocompta/include/sql/patch/upgrade167.sql
2021-08-24 18:18:57 +02:00

7 lines
300 B
PL/PgSQL

begin;
alter table profile add column with_search_card integer;
comment on column profile.with_search_card is 'Display a icon for searching card : 1 display, 0 not displaid';
update profile set with_search_card =1;
insert into version (val,v_description) values (168,'Button search card');
commit ;