Files
danbooru/db/migrate/20150705014135_add_is_deleted_to_comments.rb

7 lines
206 B
Ruby

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