Hello,
I’m using Forest for a small project that I never touched since the first deploy.
I just updated my project and added some fields in the database (Postgres, using Prisma).
The new fields don’t show up in my admin panel. What should I do ?
I tried forest schema:update
but the output is as below:
√ Connecting to your database(s)
√ Analyzing the database(s)
√ Disconnecting from your database(s)
skip forest/alert-rules-to-monitor.js - already exists.
skip forest/alert-rules.js - already exists.
skip forest/job.js - already exists.
skip forest/monitor.js - already exists.
skip forest/run.js - already exists.
skip forest/session.js - already exists.
skip forest/user.js - already exists.
skip models/alert-rules-to-monitor.js - already exists.
skip models/alert-rules.js - already exists.
skip models/job.js - already exists.
skip models/monitor.js - already exists.
skip models/run.js - already exists.
skip models/session.js - already exists.
skip models/user.js - already exists.
skip routes/alert-rules-to-monitor.js - already exists.
skip routes/alert-rules.js - already exists.
skip routes/job.js - already exists.
skip routes/monitor.js - already exists.
skip routes/run.js - already exists.
skip routes/session.js - already exists.
skip routes/user.js - already exists.
√ Generating your files
It seems to skip the entire tables because those already exist. What should I do to update the schemas ?
Thanks,