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