12 lines
217 B
Ruby
12 lines
217 B
Ruby
# 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
|