1alter table PAGES add column IS_INDEX TEXT;
2
3drop index IS_HOME;
4
5create index if not exists IS_INDEX ON PAGES (IS_INDEX);
6