Commit cbf7f84798ef72a28d7365edbec8d7d90327ecc6
1 parent
0dd4a244
Exists in
master
and in
29 other branches
external_feed: Change column type to allow big addresses
Showing
2 changed files
with
10 additions
and
1 deletions
Show diff stats
db/migrate/20150122165042_change_address_type_to_text_in_external_feed.rb
0 → 100644
db/schema.rb
... | ... | @@ -315,7 +315,7 @@ ActiveRecord::Schema.define(:version => 20140827191326) do |
315 | 315 | create_table "external_feeds", :force => true do |t| |
316 | 316 | t.string "feed_title" |
317 | 317 | t.datetime "fetched_at" |
318 | - t.string "address" | |
318 | + t.text "address" | |
319 | 319 | t.integer "blog_id", :null => false |
320 | 320 | t.boolean "enabled", :default => true, :null => false |
321 | 321 | t.boolean "only_once", :default => true, :null => false | ... | ... |