*/migrations should not be in .gitignore right?
Just noticed */migrations is in my gitignore and im pretty sure WASP auto put it there.
That shouldnt be there right?
That shouldnt be there right?
migrations/ directory should not be in your .gitignore file. This directory contains database migration files which are crucial for the correct operation of your application, especially when working in a team or deploying to production. These files ensure that everyone working on the project, or any environment where the project runs, has the same database structure.migrations/ directory. These files describe the changes to be made to the database structure. When you run wasp db migrate-dev, these migrations are applied to your database.migrations/ directory, you can recreate your migrations by running wasp db migrate-dev. However, be aware that this will create a new initial migration based on the current state of your data model, and any previous migration history will be lost.wasp db migrate-dev to create a new initial migration for PostgreSQL.migrations/migrations/migrations/.gitignorewasp db migrate-devwasp db migrate-devwasp db migrate-dev