]> git.openstreetmap.org Git - osqa.git/blob - sql_scripts/100108_upgrade_ef.sql
deleting the test file
[osqa.git] / sql_scripts / 100108_upgrade_ef.sql
1 alter table auth_user add column hide_ignored_questions tinyint(1) not NULL;
2 update auth_user set hide_ignored_questions=0;
3 alter table auth_user add column tag_filter_setting varchar(16) not NULL;
4 update auth_user set tag_filter_setting='ignored';