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

9 lines
200 B
Ruby
Raw Normal View History

2024-06-21 11:46:12 +00:00
# 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