mirror of
https://github.com/internetee/registry.git
synced 2025-06-04 11:47:30 +02:00
7 lines
160 B
Ruby
7 lines
160 B
Ruby
class RemoveFillIdentCountryFunction < ActiveRecord::Migration[5.0]
|
|
def change
|
|
execute <<~SQL
|
|
DROP FUNCTION fill_ident_country();
|
|
SQL
|
|
end
|
|
end
|