class PgSearch::Migration::DmetaphoneGenerator
def create_migration
def create_migration now = Time.now.utc filename = "#{now.strftime('%Y%m%d%H%M%S')}_add_pg_search_dmetaphone_support_functions.rb" template "add_pg_search_dmetaphone_support_functions.rb.erb", "db/migrate/#{filename}" end
def read_sql_file(filename)
def read_sql_file(filename) sql_directory = File.expand_path("../../../../sql", __FILE__) source_path = File.join(sql_directory, "#{filename}.sql") File.read(source_path) end