class AddAboutYamlFlagToVersion < ActiveRecord::Migration def self.up add_column "versions", "has_meta_file", :boolean end def self.down remove_column "versions", "has_meta_file" end end