I will pay for someone to tell me exactly how to f...
# orm-help
j
I will pay for someone to tell me exactly how to fix at this point. DM
j
did you migrate your db yet?
j
How do I do that? I’ve never personally used prisma before
I’m a python dev and this is for my website. We are changing devs and the new one has never used prisma. Any help is appreciated.
I’m bountying $50 rn on it lmao
i
How do I do that? I’ve never personally used prisma before
Lol wat. If you really want help, you should take the time to provide more context. What are you actually trying to do? What have you done so far? What commands have you run, what did you expect to happen, and what did happen?
j
Like i said, never used Prisna and I’m not the dev. I have a developer for my website that isn’t familiar with Prisma. Trying to figure this out and in general theres more information. Others have been helpful to me though.
d
Have you tried connecting to the prisma studio? You might have the schema available but you still need to make the migrations in order to feed your DB.
But I'm not sure what are you are trying to do. You share a video that show s how your website renders some calls we supposed are handled by prisma. You might better log the calls more close to the prisma endpoints to discard any non-related issue. By looking at the video, there is not too much someone can help you. Again, try to run prisma studio, which is an abstraction of your connection and will let you to know at least if your migrations have succeded.
r
Hi @Jacob Lloyd Do you have a database setup in the
Settings
tab and if so - where is it hosted?
I've created a new project using Heroku and Postgres, linked it up to my github and the prisma cloud is working correctly for me ..
I've also just added a new model in my repo schema file and it's reflecting in the prisma cloud.
What you are more than likely missing is that a
migration
needs to be run
🙌 1
d
Yes, I think the same
r
@Demian N - can that be done through
Prisma cloud
yet - I don't think it can .. (do you know)
@Jacob Lloyd - the
Prisma Data Platform
(that web interface that you're using at
<https://cloud.prisma.io/>
) is still in "Early Access" and doesn't allow you to run a migration directly from it. What you would need to do is checkout the code to a computer and run something like :
Copy code
yarn
yarn prisma migrate dev