1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 05:25:24 +02:00

Fix remaining rubocop offenses
Some checks failed
Publish Docker image / ci (push) Has been cancelled
Publish Docker image / Build docker image (push) Has been cancelled

- 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>
This commit is contained in:
Josh Pigford 2025-06-18 08:38:04 -05:00
parent 8296e10246
commit 7aca5a2277
7 changed files with 10 additions and 10 deletions

View file

@ -2,6 +2,6 @@ class AddOwnerToOauthApplications < ActiveRecord::Migration[7.2]
def change
add_column :oauth_applications, :owner_id, :uuid
add_column :oauth_applications, :owner_type, :string
add_index :oauth_applications, [:owner_id, :owner_type]
add_index :oauth_applications, [ :owner_id, :owner_type ]
end
end