A simple twilio app in rails and angular

20140903035305_create_call_logs.rb 195B

1234567891011
  1. class CreateCallLogs < ActiveRecord::Migration
  2. def change
  3. create_table :call_logs do |t|
  4. t.text :number
  5. t.references :message, index: true
  6. t.timestamps
  7. end
  8. end
  9. end