Set up the feed_item model
[feedcatcher.git] / db / migrate / 20140104143920_create_feed_items.rb
1 class CreateFeedItems < ActiveRecord::Migration
2 def change
3 create_table :feed_items do |t|
4 t.string :feed_name
5 t.string :title
6 t.string :description
7
8 t.timestamps
9 end
10 add_index :feed_items, :feed_name
11 end
12 end