1class AddAuthorToTutorials < ActiveRecord::Migration 2 def change 3 add_column :tutorials, :author, :string 4 add_column :tutorials, :author_url, :string 5 end 6end