Guest User

Untitled

a guest
Jun 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. create_table "notifications", force: :cascade do |t|t.integer "performer_id"
  2. t.string "content"
  3. t.integer "kind"
  4. t.datetime "created_at", null: false
  5. t.datetime "updated_at", null: false
  6. t.index ["performer_id"], name: "index_notifications_on_performer_id"
  7. end
  8.  
  9. create_table "visualizations", force: :cascade do |t|
  10. t.integer "notification_id", null: false
  11. t.integer "collaborator_id", null: false
  12. t.boolean "visualized", default: false
  13. t.index ["collaborator_id"], name: "index_visualizations_on_collaborator_id"
  14. t.index ["notification_id"], name: "index_visualizations_on_notification_id"
  15. end
Add Comment
Please, Sign In to add comment