From 3c7c460fb907e223fa82d0d79e1ac28605a76553 Mon Sep 17 00:00:00 2001 From: Sojan Date: Wed, 25 Jun 2025 16:11:25 -0700 Subject: [PATCH] chore: remove duplicate voice channel migration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- db/migrate/20250426130000_create_channel_voice.rb | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 db/migrate/20250426130000_create_channel_voice.rb diff --git a/db/migrate/20250426130000_create_channel_voice.rb b/db/migrate/20250426130000_create_channel_voice.rb deleted file mode 100644 index 18a3a8cf3..000000000 --- a/db/migrate/20250426130000_create_channel_voice.rb +++ /dev/null @@ -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 \ No newline at end of file