Files
nairobi/db/migrate/20151111202657_adds_tsvector_update_trigger.rb
Javi Martín 55addaa58a Apply rubocop rules to migration files
There are some rules which only affect migration files, and we cannot
enable them if we're excluding those files from being inspected.

We're also changing migrations related to the Rails/TimeZone rule
slightly because these fields were already changed afterwards, so we
aren't changing the schema.
2019-10-24 20:35:13 +02:00

12 lines
257 B
Ruby

class AddsTsvectorUpdateTrigger < ActiveRecord::Migration[4.2]
def up
add_column :proposals, :tsv, :tsvector
add_index :proposals, :tsv, using: "gin"
end
def down
remove_index :proposals, :tsv
remove_column :proposals, :tsv
end
end