mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02: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>
6 lines
185 B
Ruby
6 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
|