gambosite/db/migrate/20250124201602_create_api_keys.rb

11 lines
179 B
Ruby
Raw Normal View History

2025-01-24 13:03:47 -08:00
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