Home > Backend Development > PHP Tutorial > 有那些 像 laravel 的 migration 管理 数据库的工具?

有那些 像 laravel 的 migration 管理 数据库的工具?

WBOY
Release: 2016-06-06 20:43:31
Original
1016 people have browsed it

使用 laravel 的 migration 可以把表结构, 表数据 定义在 php 文件里, 简化了数据库的操作, 感觉非常方便。
由于我目前还不能在实际中使用 laravel, 但实在羡慕这种管理数据库的方式, 求 migration 的替代品!
也在尝试将 migration 单独取出来用。

回复内容:

使用 laravel 的 migration 可以把表结构, 表数据 定义在 php 文件里, 简化了数据库的操作, 感觉非常方便。
由于我目前还不能在实际中使用 laravel, 但实在羡慕这种管理数据库的方式, 求 migration 的替代品!
也在尝试将 migration 单独取出来用。

其实 migration 是数据库移动工具,方便你从开发环境部署到生产环境时,直接执行下命令即可,包括后期数据表字段的增、删、改,可以增量升级。

laravel 里的 migration 也是集成的第三方的包,你可以看看 doctrine 的 https://github.com/doctrine/migrations

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template