9 lines
200 B
Ruby
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
|