This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/db/migrate/20130110200633_create_errors.rb

12 lines
248 B
Ruby

class CreateErrors < ActiveRecord::Migration
def change
create_table :errors do |t|
t.references :feed
t.string :action, :default => :undefined
t.text :message, :default => "no message"
t.timestamps
end
end
end