summaryrefslogtreecommitdiffstats
path: root/sql_scripts/100108_upgrade_ef.sql
blob: 1c9a5c1c9c620b4d2e25f46141f6663626a7e3ed (plain)
1
2
3
4
alter table auth_user add column hide_ignored_questions tinyint(1) not NULL;
update auth_user set hide_ignored_questions=0;
alter table auth_user add column tag_filter_setting varchar(16) not NULL;
update auth_user set tag_filter_setting='ignored';