yarn rw g sdl tableName
is really nice to create new tables, but I was wondering what the best way to update the files generated by this command.
for example, if I want to add a new column to a table after I initially ran yarn rw g sdl
is there an update command like yarn rw update sdl tableName
? Or if I have to write those updates manually is there a recommended process? Like edit schema.prisma
→ edit .sdl.js file
→ yarn rw db save
→ yarn rw db up