@ronin/compiler 0.10.2-leo-ron-1083-experimental-213 → 0.10.2-leo-ron-1083-experimental-214

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -74,7 +74,7 @@ const results: Array<Result> = transaction.prepareResults(rows);
74
74
 
75
75
  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.
76
76
 
77
- This table is called `ronin_master`, which mimics the default `sqlite_master` table provided by SQLite. You can generate its respective SQL statements like so:
77
+ 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:
78
78
 
79
79
  ```typescript
80
80
  import { Transaction, ROOT_MODEL } from '@ronin/compiler';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronin/compiler",
3
- "version": "0.10.2-leo-ron-1083-experimental-213",
3
+ "version": "0.10.2-leo-ron-1083-experimental-214",
4
4
  "type": "module",
5
5
  "description": "Compiles RONIN queries to SQL statements.",
6
6
  "publishConfig": {