After creating a schema model named Appointment with various fields and roles, I decided to make changes by adding the "status" field directly to the Appointment table using the psql query tool. Subsequently, I updated the schema model to include the new status. Now, I need to sync my database with Prisma migrations without clearing it completely. Much like in git, where a simple git pull can reconcile differences between local and remote repositories, how do I accomplish this for my project?