class CreateReleaseFormats < ActiveRecord::Migration
  def change
    create_table :release_formats do |t|
      t.string :name
      t.string :hash

      t.timestamps
    end
  end
end