mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 15:43:14 +01:00
Fix typo in migration
This commit is contained in:
parent
d39f00165e
commit
f35aa2a9d3
2 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
class CreatePapers < ActiveRecord::Migration def change
|
class CreatePapers < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
create_table :papers do |t|
|
create_table :papers do |t|
|
||||||
t.string :name
|
t.string :name
|
||||||
t.string :url
|
t.string :url
|
||||||
|
|
|
@ -21,6 +21,8 @@ ActiveRecord::Schema.define(version: 20150413193656) do
|
||||||
t.datetime "scraped_at"
|
t.datetime "scraped_at"
|
||||||
t.string "paper_type"
|
t.string "paper_type"
|
||||||
t.string "originator"
|
t.string "originator"
|
||||||
|
t.text "resolution"
|
||||||
|
t.text "content"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at"
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue