chore: remove duplicate voice channel migration

- Remove db/migrate/20250426130000_create_channel_voice.rb (older duplicate)
- Keep db/migrate/20250620120000_create_channel_voice.rb from develop

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Sojan
2025-06-25 16:11:25 -07:00
co-authored by Claude
parent bd84d1b17e
commit 3c7c460fb9
@@ -1,15 +0,0 @@
class CreateChannelVoice < ActiveRecord::Migration[7.0]
def change
create_table :channel_voice do |t|
t.string :phone_number, null: false
t.string :provider, null: false, default: 'twilio'
t.jsonb :provider_config, null: false
t.integer :account_id, null: false
t.jsonb :additional_attributes, default: {}
t.timestamps
t.index :phone_number, unique: true
end
end
end