mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 22:34:47 +00:00
- Fix string literal style in doorkeeper.rb - Add missing final newlines - Remove trailing whitespace - Fix array bracket spacing in migrations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
185 B
Ruby
7 lines
185 B
Ruby
class AddSourceToApiKeys < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :api_keys, :source, :string, default: "web"
|
|
add_index :api_keys, [ :user_id, :source ]
|
|
end
|
|
end
|