From 5f4929de216ba9f647cc555e913497639b700956 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Mar 2026 14:43:59 +0000 Subject: [PATCH 1/2] Initial plan From 0df1580540d02321c871b15e072417dc15873967 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Mar 2026 14:46:55 +0000 Subject: [PATCH 2/2] Add migration to add country and sponsor_name to nodes Co-authored-by: jonathanbier <42411042+jonathanbier@users.noreply.github.com> --- ...0260305144431_add_country_and_sponsor_name_to_nodes.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 db/migrate/20260305144431_add_country_and_sponsor_name_to_nodes.rb diff --git a/db/migrate/20260305144431_add_country_and_sponsor_name_to_nodes.rb b/db/migrate/20260305144431_add_country_and_sponsor_name_to_nodes.rb new file mode 100644 index 00000000..022f7a4f --- /dev/null +++ b/db/migrate/20260305144431_add_country_and_sponsor_name_to_nodes.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +class AddCountryAndSponsorNameToNodes < ActiveRecord::Migration[6.1] + def change + add_column :nodes, :country, :string + add_column :nodes, :sponsor_name, :string + end +end