add api key

This commit is contained in:
2025-01-24 13:03:47 -08:00
parent fc0a446b01
commit 3a0b818041
7 changed files with 63 additions and 4 deletions

View File

@ -9,6 +9,7 @@ class CreateGames < ActiveRecord::Migration[8.0]
t.integer :high_roll
t.integer :low_roll
t.integer :payout
t.string :client
t.timestamps
end

View File

@ -0,0 +1,10 @@
class CreateApiKeys < ActiveRecord::Migration[8.0]
def change
create_table :api_keys do |t|
t.string :key
t.string :client
t.timestamps
end
end
end