This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20180308071922_drop_raise_read_only_function.rb
2023-01-09 11:59:41 +00:00

12 lines
243 B
Ruby

# frozen_string_literal: true
class DropRaiseReadOnlyFunction < ActiveRecord::Migration[5.1]
def up
DB.exec("DROP FUNCTION IF EXISTS raise_read_only() CASCADE;")
end
def down
raise ActiveRecord::IrreversibleMigration
end
end