A simple twilio app in rails and angular

schema.rb 1.3KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # encoding: UTF-8
  2. # This file is auto-generated from the current state of the database. Instead
  3. # of editing this file, please use the migrations feature of Active Record to
  4. # incrementally modify your database, and then regenerate this schema definition.
  5. #
  6. # Note that this schema.rb definition is the authoritative source for your
  7. # database schema. If you need to create the application database on another
  8. # system, you should be using db:schema:load, not running all the migrations
  9. # from scratch. The latter is a flawed and unsustainable approach (the more migrations
  10. # you'll amass, the slower it'll run and the greater likelihood for issues).
  11. #
  12. # It's strongly recommended that you check this file into your version control system.
  13. ActiveRecord::Schema.define(version: 20140903035305) do
  14. # These are extensions that must be enabled in order to support this database
  15. enable_extension "plpgsql"
  16. create_table "call_logs", force: true do |t|
  17. t.text "number"
  18. t.integer "message_id"
  19. t.datetime "created_at"
  20. t.datetime "updated_at"
  21. end
  22. add_index "call_logs", ["message_id"], name: "index_call_logs_on_message_id", using: :btree
  23. create_table "messages", force: true do |t|
  24. t.text "body"
  25. t.text "title"
  26. t.datetime "created_at"
  27. t.datetime "updated_at"
  28. t.integer "secret"
  29. end
  30. end