stadtratmonitor/db/migrate/20150413193656_create_papers.rb
2015-04-27 21:02:46 +02:00

18 lines
377 B
Ruby

class CreatePapers < ActiveRecord::Migration
def change
create_table :papers do |t|
t.string :name
t.string :url
t.string :reference
t.string :name
t.datetime :published_at
t.datetime :scraped_at
t.string :paper_type
t.string :originator
t.text :resolution
t.text :content
t.timestamps
end
end
end