mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 10:41:41 +00:00
10 lines
234 B
Ruby
10 lines
234 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Habilitar las extensiones de búsqueda de texto libre
|
||
|
class CreatePgSearchExtensions < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
enable_extension 'plpgsql'
|
||
|
enable_extension 'pg_trgm'
|
||
|
end
|
||
|
end
|