mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-23 16:13:14 +01:00
11 lines
223 B
Ruby
11 lines
223 B
Ruby
|
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
|