Sha256: 0de2d884c268ba38e0ca7f2b55b5d186790893fe3a86bd0c3199ff84f036c6c3
Contents?: true
Size: 352 Bytes
Versions: 6
Compression:
Stored size: 352 Bytes
Contents
class AddDataSearchExtensions < ActiveRecord::Migration[4.2] def up execute <<-SQL CREATE EXTENSION fuzzystrmatch; CREATE EXTENSION pg_trgm; CREATE EXTENSION unaccent; SQL end def down execute <<-SQL DROP EXTENSION pg_trgm; DROP EXTENSION unaccent; DROP EXTENSION fuzzystrmatch; SQL end end
Version data entries
6 entries across 6 versions & 1 rubygems