Sha256: 5affeb0119b27351d6c6f1a5b15570a834a30c806e3779a1e471c1d0e80bf7b3
Contents?: true
Size: 546 Bytes
Versions: 85
Compression:
Stored size: 546 Bytes
Contents
# frozen_string_literal: true class EnablePgTrgmExtensionForProposals < ActiveRecord::Migration[5.1] def change return if extension_enabled?("pg_trgm") begin # required so that test suite works in ci env enable_extension "pg_trgm" rescue StandardError raise <<-MSG.squish Decidim requires the pg_trgm extension to be enabled in your PostgreSQL. You can do so by running `CREATE EXTENSION IF NOT EXISTS "pg_trgm";` on the current DB as a PostgreSQL super user. MSG end end end
Version data entries
85 entries across 85 versions & 1 rubygems