diff --git a/docs/building/tinyorm.mdx b/docs/building/tinyorm.mdx
index 57b2b9f5e..ad10fe573 100644
--- a/docs/building/tinyorm.mdx
+++ b/docs/building/tinyorm.mdx
@@ -360,9 +360,9 @@ But a special situation is when you are building your application / library and
| `TINYORM_INLINE_CONSTANTS` | Defined when global inline constants are used.
Defined when [`inline_constants`](#inline_constants) (qmake) / [`INLINE_CONSTANTS`](#INLINE_CONSTANTS) (cmake) configuration `build option` is enabled. |
| `TINYORM_TESTS_CODE` | Enable code needed by unit tests, eg. connection overriding in the `Orm::Tiny::Model`.
Defined when [`build_tests`](#build_tests) (qmake) / [`BUILD_TESTS`](#BUILD_TESTS) (cmake) configuration `build option` is enabled. |
| `TINYORM_DISABLE_THREAD_LOCAL` | Remove all [`thread_local`](https://en.cppreference.com/w/c/language/storage_duration) storage duration specifiers, it disables threading support.
Defined when [`disable_thread_local`](#disable_thread_local) (qmake) / [`DISABLE_THREAD_LOCAL`](#DISABLE_THREAD_LOCAL) (cmake) configuration `build option` is enabled. |
-| `TINYTOM_MIGRATIONS_DIR` | Default migrations path for the `make:migration` command, can be an absolute or relative path (to the pwd).
Default value: `database/migrations` (relative to the pwd)
Defined by [`TOM_MIGRATIONS_DIR`](#TOM_MIGRATIONS_DIR) (cmake) configuration build option.
(qmake note) You can use `DEFINES += TINYTOM_MIGRATIONS_DIR="\"database/migrations\""` on the command-line or set it in the __main__ [`conf.pri`](https://github.com/silverqx/TinyORM/blob/main/conf.pri.example#L4-L9) file. |
-| `TINYTOM_MODELS_DIR` | Default models path for the `make:model` command, can be an absolute or relative path (to the pwd).
Default value: `database/models` (relative to the pwd)
Defined by [`TOM_MODELS_DIR`](#TOM_MODELS_DIR) (cmake) configuration build option.
(qmake note) You can use `DEFINES += TINYTOM_MODELS_DIR="\"database/models\""` on the command-line or set it in the __main__ [`conf.pri`](https://github.com/silverqx/TinyORM/blob/main/conf.pri.example#L11-L12) file. |
-| `TINYTOM_SEEDERS_DIR` | Default seeders path for the `make:seeder` command, can be an absolute or relative path (to the pwd).
Default value: `database/seeders` (relative to the pwd)
Defined by [`TOM_SEEDERS_DIR`](#TOM_SEEDERS_DIR) (cmake) configuration build option.
(qmake note) You can use `DEFINES += TINYTOM_SEEDERS_DIR="\"database/seeders\""` on the command-line or set it in the __main__ [`conf.pri`](https://github.com/silverqx/TinyORM/blob/main/conf.pri.example#L14-L15) file. |
+| `TINYTOM_MIGRATIONS_DIR` | Default migrations path for the `make:migration` command, can be an absolute or relative path (to the pwd).
Default value: `database/migrations` (relative to the pwd)
Defined by [`TOM_MIGRATIONS_DIR`](#TOM_MIGRATIONS_DIR) (cmake) configuration build option.
(qmake note) You can use `DEFINES += TINYTOM_MIGRATIONS_DIR="\"database/migrations\""` on the command-line or set it in the __main__ [`conf.pri`](https://github.com/silverqx/TinyORM/blob/main/conf.pri.example#L65-L70) file. |
+| `TINYTOM_MODELS_DIR` | Default models path for the `make:model` command, can be an absolute or relative path (to the pwd).
Default value: `database/models` (relative to the pwd)
Defined by [`TOM_MODELS_DIR`](#TOM_MODELS_DIR) (cmake) configuration build option.
(qmake note) You can use `DEFINES += TINYTOM_MODELS_DIR="\"database/models\""` on the command-line or set it in the __main__ [`conf.pri`](https://github.com/silverqx/TinyORM/blob/main/conf.pri.example#L72-L73) file. |
+| `TINYTOM_SEEDERS_DIR` | Default seeders path for the `make:seeder` command, can be an absolute or relative path (to the pwd).
Default value: `database/seeders` (relative to the pwd)
Defined by [`TOM_SEEDERS_DIR`](#TOM_SEEDERS_DIR) (cmake) configuration build option.
(qmake note) You can use `DEFINES += TINYTOM_SEEDERS_DIR="\"database/seeders\""` on the command-line or set it in the __main__ [`conf.pri`](https://github.com/silverqx/TinyORM/blob/main/conf.pri.example#L75-L76) file. |
| `TINYORM_USING_PCH` | Defined if building with precompiled headers.
Controlled by [`qmake`](#precompile_header) / [`CMake`](#CMAKE_DISABLE_PRECOMPILE_HEADERS). |
@@ -723,7 +723,7 @@ Everything is ready for build, you can press Ctrl+b to bui
| `disable_tom` | `OFF` | Controls the compilation of all `Tom-related` source code, when this option is `disabled`, then it also excludes `Tom-related` unit tests. |
| `extern_constants` | `ON` | Use `extern` constants instead of `inline` constants in the `shared build`.
`ON` is highly recommended for the `shared build` (by default);
is always `OFF` for the `static build`.
Available when: CONFIG(shared\|dll):!inline_constants
|
| `inline_constants` | `OFF` | Use `inline` constants instead of `extern` constants in the `shared build`.
`OFF` is highly recommended for the `shared build`;
is always `ON` for the `static build`. |
-| `link_pkgconfig_off` | `OFF` | Link against `mysqlclient` or `libmariadb` with `PKGCONFIG`.
Used only in the `Unix` and `MinGW` __shared__ build (exactly win32-g++\|win32-clang-g++
) and when `mysql_ping` is also defined to link against `mysqlclient` or `libmariadb`, [source code](https://github.com/silverqx/TinyORM/blob/main/conf.pri.example#L48).
Available when: `unix:mysql_ping` or (win32-g++\|win32-clang-g++):mysql_ping:!static:!staticlib
|
+| `link_pkgconfig_off` | `OFF` | Link against `mysqlclient` or `libmariadb` with `PKGCONFIG`.
Used only in the `Unix` and `MinGW` __shared__ build (exactly win32-g++\|win32-clang-g++
) and when `mysql_ping` is also defined to link against `mysqlclient` or `libmariadb`, [source code](https://github.com/silverqx/TinyORM/blob/main/conf.pri.example#L132).
Available when: `unix:mysql_ping` or (win32-g++\|win32-clang-g++):mysql_ping:!static:!staticlib
|
| `mysql_ping` | `OFF` | Enable `Orm::MySqlConnection::pingDatabase()` method. |
| `tiny_autoconf` | `ON` | Enable [Auto-configuration](#auto-configuration-internals) feature.
This `CONFIG` option allows us to `auto-configure` `TinyORM` project, and with it help, the `conf.pri` files can be skipped entirely. |
| `tiny_ccache_win32` | `ON` | Enable compiler cache. [Homepage](https://ccache.dev/)
It works only on Windows systems. It works well with the MSYS2 `g++`, `clang++`, `msvc`, and `clang-cl` with `msvc`. It disables `precompile_header` as they are not supported on Windows and changes the `-Zi` compiler option to the `-Z7` for debug builds as the `-Zi` compiler option is not supported ([link](https://github.com/ccache/ccache/issues/1040) to the issue). |