We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8df1ee commit f033042Copy full SHA for f033042
README.md
@@ -28,6 +28,32 @@ To stop the infrastructure, run the following command:
28
npm run infra:stop
29
```
30
31
+## Database Management
32
+
33
+### Running Migrations
34
35
+To run the latest database migrations, use the following command:
36
37
+```bash
38
+npm run db:migrate
39
+```
40
41
+### Rolling Back Migrations
42
43
+To rollback the last batch of migrations, use the following command:
44
45
46
+npm run db:rollback
47
48
49
+### Seeding the Database
50
51
+To seed the database with initial data, use the following command:
52
53
54
+npm run db:seed
55
56
57
## License
58
59
This project is licensed under the MIT License. See the [LICENSE](/LICENSE) file for details.
0 commit comments