Files
grecia/db/migrate/20201216132234_add_tsv_to_polls.rb
Javi Martín 852014e478 Add search method to polls
So far the method does not take questions nor answers into account.

This way we'll be able to search polls in the SDG Management section.
2020-12-21 18:04:48 +01:00

6 lines
113 B
Ruby

class AddTsvToPolls < ActiveRecord::Migration[5.2]
def change
add_column :polls, :tsv, :tsvector
end
end