1class CreateResources < ActiveRecord::Migration 2 def change 3 create_table :resources do |t| 4 t.string :title 5 t.string :link 6 t.string :description 7 8 t.timestamps 9 end 10 end 11end