class CreateFeeds < ActiveRecord::Migration
  def self.up
    create_table :feeds do |t|
			t.column  :user_id, :integer
			t.column  :name, :string
			t.column  :feed_url, :string
			t.column  :created_at, :datetime
    end
  end

  def self.down
    drop_table :feeds
  end
end

