chore: remove unused telegram bot model (#12417)

## Summary
- remove unused TelegramBot model and its association
- drop obsolete telegram_bots table
This commit is contained in:
Sojan Jose
2025-09-11 22:25:26 +05:30
committed by GitHub
parent 55315089cf
commit de5fb7a405
5 changed files with 11 additions and 28 deletions

View File

@@ -0,0 +1,10 @@
class DropTelegramBots < ActiveRecord::Migration[7.1]
def change
drop_table :telegram_bots do |t|
t.string :name
t.string :auth_key
t.integer :account_id
t.timestamps
end
end
end