2.0.6.sql 274 Bytes
SET FOREIGN_KEY_CHECKS=0;

ALTER TABLE `hi-sing`.`user_tags` ADD COLUMN `weight` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `user_id`;

ALTER TABLE `hi-sing`.`user_tags` ADD COLUMN `index_filter` tinyint UNSIGNED NOT NULL DEFAULT 1 AFTER `weight`;

SET FOREIGN_KEY_CHECKS=1;