# frozen_string_literal: true class CreateTwilioBaseGlobalConfigs < ActiveRecord::Migration[5.0] def change create_table :twilio_base_global_configs do |t| t.string :api_key_secret t.string :api_key_sid t.string :application_sid t.string :chat_service_sid t.string :phone_number t.string :sync_service_sid t.string :workflow_sid t.string :workspace_sid t.timestamps end end end