implement players

This commit is contained in:
2024-09-12 19:06:02 -07:00
parent c7df3aacfe
commit 6040c7aaf2
10 changed files with 94 additions and 0 deletions
@@ -0,0 +1,11 @@
# frozen_string_literal: true
ROM::SQL.migration do
change do
create_table :players do
primary_key :id
column :name, String, null: false
column :rating, Integer, null: false
end
end
end