class CreatePatchVersions < ActiveRecord::Migration def self.up create_table :patch_versions do |t| # t.column :name, :string end end def self.down drop_table :patch_versions end end