Fix typo in migration

This commit is contained in:
Andreas Haller 2015-04-27 21:02:26 +02:00
parent d39f00165e
commit f35aa2a9d3
2 changed files with 4 additions and 1 deletions

View file

@ -1,4 +1,5 @@
class CreatePapers < ActiveRecord::Migration def change
class CreatePapers < ActiveRecord::Migration
def change
create_table :papers do |t|
t.string :name
t.string :url

View file

@ -21,6 +21,8 @@ ActiveRecord::Schema.define(version: 20150413193656) do
t.datetime "scraped_at"
t.string "paper_type"
t.string "originator"
t.text "resolution"
t.text "content"
t.datetime "created_at"
t.datetime "updated_at"
end