This commit is contained in:
Toks
2015-07-04 22:00:31 -04:00
parent b1b31d7387
commit 4f4fd8cb35
5 changed files with 52 additions and 35 deletions

View File

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