11b82c1c2f14ce75bb63e404576171cd47a7d8e5
[feedcatcher.git] / 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