A simple twilio app in rails and angular

20140903010204_create_messages.rb 171B

1234567891011
  1. class CreateMessages < ActiveRecord::Migration
  2. def change
  3. create_table :messages do |t|
  4. t.text :body
  5. t.text :title
  6. t.timestamps
  7. end
  8. end
  9. end