class AddPubDateToManifestation < ActiveRecord::Migration def self.up add_column :manifestations, :pub_date, :string end def self.down remove_column :manifestations, :pub_date end end