stadtratmonitor/db/migrate/20151010070158_create_paper_searches.rb

11 lines
228 B
Ruby
Raw Normal View History

2020-03-09 12:29:34 +01:00
class CreatePaperSearches < ActiveRecord::Migration[4.2]
2015-10-10 09:47:52 +02:00
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