mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-02-19 18:28:39 -06:00
This command is very similar to the make:migration command except the --create and --table command-line parameters. It provides the same functionality but for seeders. - updated docs TINYTOM_SEEDERS_DIR macro and TOM_SEEDERS_DIR for cmake
--- title: Prologue sidebar_position: 0 slug: / hide_table_of_contents: true description: TinyORM is a modern ORM library that makes interacting with a database extremely simple. The code is well tested with the unit and functional tests. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against a real MySQL database. --- # Prologue TinyORM is a modern ORM library that makes interacting with a database extremely simple. The code is well tested with the unit and functional tests. Almost all the query builder methods are unit tested. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against all supported databases. For now, the code coverage is not ideal but is good enough to guarantee API and behavior compatibility. - [Dependencies](dependencies.mdx#dependencies) - [Supported Compilers](supported-compilers.mdx#supported-compilers) - [Database: Getting Started](database.mdx#database-getting-started) - [Database: Query Builder](query-builder.mdx#database-query-builder) - [Database: Migrations](migrations.mdx#database-migrations) - [Database: Seeding](seeding.mdx#database-seeding) - [TinyORM: Getting Started](tinyorm.mdx#tinyorm-getting-started) - [TinyORM: Relationships](tinyorm-relationships.mdx#tinyorm-relationships) - [Building: TinyORM](building-tinyorm.mdx#building-tinyorm) - [Building: Hello world](building-hello-world.mdx#building-hello-world) - [Building: Migrations](building-migrations.mdx#building-migrations)