internetee-registry/db/migrate/20191212133136_remove_fill_ident_country_function.rb

7 lines
160 B
Ruby

class RemoveFillIdentCountryFunction < ActiveRecord::Migration[5.0]
def change
execute <<~SQL
DROP FUNCTION fill_ident_country();
SQL
end
end