@netlify/agent-runner-cli 1.145.0-test.0 → 1.145.0-test.2
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/dist/bin-local.js +178 -176
- package/dist/bin.js +212 -210
- package/dist/index.js +191 -189
- package/dist/skills/netlify-database/SKILL.md +1 -1
- package/package.json +1 -1
|
@@ -114,7 +114,7 @@ export default defineConfig({
|
|
|
114
114
|
### Step 5: Generate migrations
|
|
115
115
|
|
|
116
116
|
Every time you change the schema, run `drizzle-kit generate` with a `--name` describing the change
|
|
117
|
-
(snake_case, starting with an imperative verb like add, create, drop, alter, rename, index):
|
|
117
|
+
(max 50 characters, snake_case, starting with an imperative verb like add, create, drop, alter, rename, index):
|
|
118
118
|
|
|
119
119
|
```bash
|
|
120
120
|
npx drizzle-kit generate --name add_users_bio
|
package/package.json
CHANGED