Add paper_searches table

This commit is contained in:
Lars Henrik Mai 2015-10-10 09:47:52 +02:00
parent a4b4c81f8d
commit 45a08beade
2 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,10 @@
class CreatePaperSearches < ActiveRecord::Migration
def change
create_table :paper_searches do |t|
t.string :query
t.string :paper_type
t.string :originator
t.string :sort_by
end
end
end