Files
danbooru/db/migrate/20150705014135_add_is_deleted_to_comments.rb
2015-07-04 22:00:31 -04:00

7 lines
201 B
Ruby

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