Sha256: b88af9f4f2e4a76c8481ac14d4cd49ab98dd0077c5d3099fb73be1679464ecdb
Contents?: true
Size: 453 Bytes
Versions: 12
Compression:
Stored size: 453 Bytes
Contents
class AddPgSearchDmetaphoneSupportFunctions < ActiveRecord::Migration<%= migration_version %> def self.up say_with_time("Adding support functions for pg_search :dmetaphone") do execute <<-'SQL' <%= read_sql_file "dmetaphone" %> SQL end end def self.down say_with_time("Dropping support functions for pg_search :dmetaphone") do execute <<-'SQL' <%= read_sql_file "uninstall_dmetaphone" %> SQL end end end
Version data entries
12 entries across 12 versions & 1 rubygems