ce7e2c8a87
It allows to search for multiple terms in multiple tables at once.
9 lines
172 B
Ruby
9 lines
172 B
Ruby
class UpdateSearchesToVersion2 < ActiveRecord::Migration
|
|
def up
|
|
replace_view :searches, version: 2
|
|
end
|
|
|
|
def down
|
|
replace_view :searches, version: 1
|
|
end
|
|
end
|