Add a button search_card
This commit is contained in:
parent
7df4ad0c0f
commit
c6288ceaf1
9 changed files with 69 additions and 23 deletions
7
include/sql/patch/upgrade167.sql
Normal file
7
include/sql/patch/upgrade167.sql
Normal 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 ;
|
||||
Loading…
Add table
Add a link
Reference in a new issue