Eloquent doesn't really care what DB you are using due to its set up. It should handle the migrations as it needs to.
Can you post an example of the errors?
There are some major differences in how these 2 databases function. If for example you are using auto_increment for id fields, those will all have to be converted to use defaults from sequences. That is the biggest thing going from MySQL POSTGres... simply create a sequence for each table, then make the default val of your IDs the nextval() of the sequence.
Any other errors you are getting post back with the error message
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community