From e67d52b200130be21293f0c105f0d947909cf047 Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Fri, 13 Dec 2024 20:22:08 +0100 Subject: [PATCH] Improved readme further --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 45146da..4867413 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ const results: Array = transaction.formatResults(objectResults, false); Before you can run any statements generated by the compiler that are altering the database schema, you need to create the table of the so-called "root model", which is used to store metadata for all other models. -This table is called `ronin_schema`, which mimics the default `sqlite_schema` table provided by SQLite. You can generate its respective SQL statements like so: +This table is called `ronin_schema`, which mimics the default `sqlite_schema` table provided by SQLite. You can generate its respective SQL statements like this: ```typescript import { Transaction, ROOT_MODEL } from '@ronin/compiler';