Skip to content

Database Schema

Ind edited this page Dec 8, 2018 · 2 revisions

users

{
  "id": {
    "type": "number",
    "increments": true
  },
  "name": {
    "type": "string"
  },
  "email": {
    "type": "string"
  },
  "email_verified_at": {
    "type": "datetime"
  },
  "password": {
    "type": "string"
  },
  "user_role_id": {
    "type": "number"
  },
  "client_id": {
    "type": "string"
  }
}

password_resets

{
  "email": {
    "type": "string"
  },
  "token": {
    "type": "string"
  },
  "created_at": {
    "type": "datetime"
  }
}
Clone this wiki locally