How to automate migration (schema and data) for PHP/MySQL application

前端 未结 11 2261
鱼传尺愫
鱼传尺愫 2020-12-12 15:32

I have an application in PHP/MySQL. I am searching for an automated way upgrading database behind the application. I don\'t need to have the compatibility with older version

11条回答
  •  爱一瞬间的悲伤
    2020-12-12 16:05

    One way you can go about it is to dump the database into a large sql file using mysqldump. Just take that file and source it within the new installation.

提交回复
热议问题