Introduction
Each implemented dialect provides two model types. View
and Table
.
While views only provide methods to query the underlying database, tables also add methods to insert, update and delete from the database.
Dialect | View | Table |
---|---|---|
Postgres | ✅ | ✅ |
MySQL/MariaDB | ✅ | ✅ |
SQLite | ✅ | ✅ |
📄️ View
Easily query a database table
📄️ Table
Easily query and modify a database table
📄️ Columns
Manipulate column listes
📄️ Hooks
Hook into model operations