Skip to content

Commit b7818f3

Browse files
committed
rubocop
1 parent d9adb6c commit b7818f3

5 files changed

Lines changed: 19 additions & 3 deletions

.claude/settings.local.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"Bash(gem specification:*)",
4040
"Read(//home/danil/.rbenv/versions/3.4.2/lib/ruby/gems/3.4.0/gems/solid_queue_dashboard-0.2.0/**)",
4141
"Bash(createdb:*)",
42-
"Bash(npm install:*)"
42+
"Bash(npm install:*)",
43+
"Bash(rubocop:*)"
4344
],
4445
"deny": [],
4546
"ask": []

db/migrate/20251006_remove_priority_from_subscriptions.rb renamed to db/migrate/20251006214327_remove_priority_from_subscriptions.rb

File renamed without changes.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class AddDeactivationFieldsToChannels < ActiveRecord::Migration[8.0]
2+
def change
3+
add_column :channels, :deactivated_at, :timestamp
4+
add_column :channels, :deactivation_reason, :string
5+
6+
# Add indexes for performance
7+
add_index :channels, :deactivated_at
8+
end
9+
end
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class RemoveActiveFromChannels < ActiveRecord::Migration[8.0]
2+
def change
3+
remove_column :channels, :active
4+
end
5+
end

db/schema.rb

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)