mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
15 lines
215 B
Markdown
15 lines
215 B
Markdown
## Running Migrations
|
|
|
|
Update `src/schema.ts` as needed, and then run:
|
|
|
|
```sh
|
|
pnpm db:generate
|
|
```
|
|
|
|
Inspect the sql in the migration file added to `drizzle/`.
|
|
|
|
If it looks okay, then run:
|
|
|
|
```sh
|
|
pnpm db:migrate
|
|
```
|