Sha256: c915107b07e953b82d9bd232543a9178f30c39465ff9108597fd72eac001fb67

Contents?: true

Size: 247 Bytes

Versions: 1

Compression:

Stored size: 247 Bytes

Contents

require File.expand_path('../../migration_helper', __FILE__)
include MigrationHelper

class InstallTrigramExtension < ActiveRecord::Migration
  def up
    install_extension('pg_trgm')
  end

  def down
    uninstall_extension('pg_trgm')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
search_steroids-0.0.1 spec/dummy/spec/tmp/db/migrate/20131010200231_install_trigram_extension.rb