mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
18 lines
409 B
Ruby
18 lines
409 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Index for full-text search in projects
|
|
class AddSearchVectorToProject < ActiveRecord::Migration[5.2]
|
|
# PostgreSQL only
|
|
def self.up
|
|
add_column :projects, :search_vector, :tsvector
|
|
|
|
execute <<-SQL
|
|
CREATE INDEX projects_search_vector_idx ON projects USING gin(search_vector);
|
|
SQL
|
|
end
|
|
|
|
def self.down
|
|
remove_column :projects, :search_vector
|
|
end
|
|
end
|