This commit is contained in:
r888888888
2013-06-20 15:10:34 -07:00
parent 99cb177398
commit 774dadf7a5
5 changed files with 43 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
class AddIsLockedToTags < ActiveRecord::Migration
def change
execute "set statement_timeout = 0"
add_column :tags, :is_locked, :boolean, :null => false, :default => false
end
end