implement players
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user