From d4c88997fffc833fccc987a69dd8c895f29312bc Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 4 Dec 2025 03:02:46 -0800 Subject: [PATCH] add retired flag to phantom players --- db/migrate/20251204100659_add_retired_to_phantom_players.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 db/migrate/20251204100659_add_retired_to_phantom_players.rb diff --git a/db/migrate/20251204100659_add_retired_to_phantom_players.rb b/db/migrate/20251204100659_add_retired_to_phantom_players.rb new file mode 100644 index 0000000..114e050 --- /dev/null +++ b/db/migrate/20251204100659_add_retired_to_phantom_players.rb @@ -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