@ronin/compiler 0.12.1-leo-ron-1071-experimental-251 → 0.12.2-readme-experimental-252
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -76,7 +76,7 @@ const results: Array<Result> = transaction.formatResults(objectResults, false);
|
|
76
76
|
|
77
77
|
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.
|
78
78
|
|
79
|
-
This table is called `ronin_schema`, which mimics the default `sqlite_schema` table provided by SQLite. You can generate its respective SQL statements like
|
79
|
+
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:
|
80
80
|
|
81
81
|
```typescript
|
82
82
|
import { Transaction, ROOT_MODEL } from '@ronin/compiler';
|