This commit is contained in:
albert
2013-03-18 16:19:09 -07:00
parent 922ccabe1d
commit 0d6ecf25c0
3 changed files with 52 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
class ChangeTagSubscriptionTagQueryType < ActiveRecord::Migration
def up
execute "alter table tag_subscriptions alter column tag_query type text"
end
def down
execute "alter table tag_subscriptions alter column tag_query type varchar(255)"
end
end