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
2018-04-05 07:22:03 +08:00

12 lines
242 B
Ruby

class DropRaiseReadOnlyFunction < ActiveRecord::Migration[5.1]
def up
ActiveRecord::Base.exec_sql(
"DROP FUNCTION IF EXISTS raise_read_only CASCADE;"
)
end
def down
raise ActiveRecord::IrreversibleMigration
end
end