class AddBooks < ActiveRecord::Migration def self.up create_table :books do |t| t.column :name, :string t.column :url_name, :string t.column :existing_page_titles, :text end end def self.down drop_table :books end end