Chatwoot/db/migrate/20200330071706_create_channel_twilio_sms.rb

12 lines
318 B
Ruby
Raw Normal View History

class CreateChannelTwilioSms < ActiveRecord::Migration[6.0]
def change
create_table :channel_twilio_sms do |t|
t.string :phone_number, null: false
t.string :auth_token, null: false
t.string :account_sid, null: false
t.integer :account_id, null: false
t.timestamps
end
end
end