main
 1class CreateLinks < ActiveRecord::Migration
 2  def change
 3    create_table :links do |t|
 4      t.string :url
 5      t.string :title
 6      t.text :description
 7      t.string :thumbnail_url
 8      t.integer :user_id
 9      t.timestamps
10    end
11  end
12end