feat: Add user role column to users table

This commit is contained in:
2026-03-27 13:09:49 -07:00
parent 76a46f51ed
commit affa487e8e
@@ -0,0 +1,9 @@
# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :users do
add_column :role, String, default: 'player'
end
end
end