Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 0b61df7

Browse files
raksivdavemooreuws
andauthored
Apply suggestions from code review
Co-authored-by: David Moore <[email protected]>
1 parent d7c0e77 commit 0b61df7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/guides/nodejs/nitric-and-pgsql.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ The first step is to create a new Nitric TypeScript project using the [Nitric CL
2222

2323
```bash
2424
nitric new todo-app ts-starter
25-
npm install
2625
```
2726

2827
## Enabling SQL databases
@@ -72,7 +71,7 @@ export default getClient
7271

7372
Create a migration file to define the `todos` table.
7473

75-
```sql title: 'migrations/1_create_table.up.sql'
74+
```sql title: migrations/todos/1_create_table.up.sql
7675
CREATE TABLE IF NOT EXISTS todos (
7776
id SERIAL PRIMARY KEY,
7877
text TEXT NOT NULL,

0 commit comments

Comments
 (0)