Add a button search_card

This commit is contained in:
sparkyx 2021-08-24 18:09:02 +02:00
parent 7df4ad0c0f
commit c6288ceaf1
9 changed files with 69 additions and 23 deletions

View file

@ -0,0 +1,7 @@
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 ;