Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ This project uses SQLite with [Sequelize](https://sequelize.org/) ORM. The datab
Migrations live in `db/migrations/` and follow the same timestamped `up`/`down` pattern as Rails:

```bash
npm run db:migrate # Run pending migrations
npm run db:rollback # Undo the last migration
npm run db:create-migration # Generate a new migration file
pnpm run db:migrate # Run pending migrations
pnpm run db:rollback # Undo the last migration
pnpm run db:create-migration # Generate a new migration file
```

### Models
Expand Down
Loading