Skip to main content

Models & Tables

This guide covers everything about defining models and working with database tables in Sequelize Dart.

Overview

Models in Sequelize Dart are regular Dart classes annotated with @Table and various column annotations (like @ColumnName, @PrimaryKey, etc.). They provide a type-safe way to interact with your database tables.

Topics