Remove fill_ident_country postgresql function as unused

This commit is contained in:
Artur Beljajev 2019-12-12 15:35:42 +02:00
parent 59a7a33c0a
commit c83372c69e
2 changed files with 9 additions and 101 deletions

View file

@ -0,0 +1,7 @@
class RemoveFillIdentCountryFunction < ActiveRecord::Migration[5.0]
def change
execute <<~SQL
DROP FUNCTION fill_ident_country();
SQL
end
end