I'm starting to work with this amazing toolkit and noticed that when I generate migration files Prisma also creates a README file alongside the new schema. This file happens to have my personal name in the subtitle: This migration has been generated by Teodoro at 10/17/2020, 9:52:22 PM. You can check out the state of the schema after the migration.
.
What intrigues me is the following:
grep -iRn "teodoro"
on project's root only returned my name included in the misterious readme files.I can't imagine any other place from which Prisma took my name to generate this README file, so where did it came from??
Ok, I was so intrigued that I cloned Prisma's repo and searched on the readme creation files for this.
The migration module uses git-user-name
package so it got my name from my global git configuration.