@liquidmetal-ai/raindrop 0.2.12 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -57
- package/dist/base-command.d.ts +1 -1
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +1 -1
- package/dist/codegen.d.ts +6 -1
- package/dist/codegen.d.ts.map +1 -1
- package/dist/codegen.js +7 -2
- package/dist/codegen.test.js +12 -7
- package/dist/commands/build/deploy.js +1 -1
- package/dist/commands/build/generate.d.ts.map +1 -1
- package/dist/commands/build/generate.js +2 -0
- package/dist/commands/build/init.d.ts.map +1 -1
- package/dist/commands/build/init.js +2 -0
- package/dist/commands/query/chunk-search.js +1 -1
- package/dist/commands/query/search.js +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +22 -0
- package/oclif.manifest.json +805 -805
- package/package.json +1 -1
- package/templates/db/db/README.md +3 -1
- package/templates/init/package.json.hbs +1 -1
package/package.json
CHANGED
|
@@ -11,10 +11,12 @@ Migration files should follow this naming pattern:
|
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Where:
|
|
14
|
+
|
|
14
15
|
- `<number>` is a 4-digit padded number (starting with `0000`)
|
|
15
16
|
- `<description>` is a brief description of what the migration does
|
|
16
17
|
|
|
17
18
|
For example:
|
|
19
|
+
|
|
18
20
|
- `0000_initial_schema.sql`
|
|
19
21
|
- `0001_add_users_table.sql`
|
|
20
22
|
- `0002_add_foreign_keys.sql`
|
|
@@ -29,4 +31,4 @@ The seed data file should **always be the last file** in the execution sequence.
|
|
|
29
31
|
|
|
30
32
|
- `9999_seed_data.sql`
|
|
31
33
|
|
|
32
|
-
This ensures that all schema changes are applied before data is seeded into the database.
|
|
34
|
+
This ensures that all schema changes are applied before data is seeded into the database.
|