add retired flag to phantom players
This commit is contained in:
parent
26718b5a3e
commit
d4c88997ff
1 changed files with 6 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
||||||
|
class AddRetiredToPhantomPlayers < ActiveRecord::Migration[8.0]
|
||||||
|
def change
|
||||||
|
add_column :phantom_players, :retired, :boolean, default: false, null: false
|
||||||
|
add_column :phantom_players, :retired_at, :datetime
|
||||||
|
end
|
||||||
|
end
|
||||||
Loading…
Reference in a new issue