tabletop-companion/db/migrate/20240621102903_add_min_max_...

9 lines
200 B
Ruby

# frozen_string_literal: true
class AddMinMaxToStats < ActiveRecord::Migration[7.1]
def change
add_column :stats, :min_allowed, :integer
add_column :stats, :max_allowed, :integer
end
end