Skip to content

Date Field

The date field is used to store date information, excluding the time part.

Physical Field Types

  • MySQL: date
  • PostgreSQL: date
  • SQLite: text

Applicable Scenarios

  • Birthday
  • Hire Date
  • Plan Date
  • Deadline
  • Release Date

API Return Example

json
{
  "birthday": "1990-01-01",
  "hire_date": "2023-06-15",
  "deadline": "2024-12-31"
}

Released under the MIT License.