thinkPHP如何使用migrate实现数据库迁移
2022-11-24 11:02:51
188
{{single.collect_count}}
下面由thinkphp框架教程栏目给大家介绍thinkPHP使用migrate实现数据库迁移的方法,希望对需要的朋友有所帮助!

php入门到就业线上直播课:进入学习
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API调试工具:点击使用

thinkPHP使用migrate实现数据库迁移

thinkPHP的数据库迁移工具:topthink/think-migration

一:安装topthink/think-migration

这里注意你安装topthink/think-migration时需要注意你的thinkPHP版本,这里我的thinkPHP版本为5.1,所以可以安装topthink/think-migration的2.0版本,无法安装3.0版本,选择你适合的版本进行安装

composer require topthink/think-migration=2.0.*
登录后复制

安装完成之后在命令行执行:

php think
登录后复制

如下表示migrate安装成功

企业微信截图_15960010854958.png

二:使用topthink/think-migration实现数据库迁移

1:创建迁移类

在命令行执行

php think migrate:create CreateUser
登录后复制

执行完成之后我们就和在./database/migrateions目录下创建一个migrate迁移文件

企业微信截图_15960010913453.png

2:实现数据库迁移

migrate方法使用文档:http://docs.phinx.org/en/latest/migrations.html

[1]:migrate代码说明:

在migrate中有三个方法

up:在migrate:run时执行(前提是文件中不存在change方法)

down:在migrate:rollback时执行(前提是文件中不存在change方法)

change:migrate:run 和migrate:rollback时执行 (如果存在该方法 则不会去执行up 与down)

一般情况下我一般将migrate文件中的change方法删除,up方法专门放置新增和更新表的操作,down方法放置删除表和删除字段操作

(1)新增表:

// create the table$table = $this->table('user', ['id' => 'user_id', 'comment' => '用户表', 'engine' => 'MyISAM', '']);$table->addColumn('user_name', 'string', ['limit' => 15, 'default' => '', 'comment' => '用户名'])->addColumn('password', 'string', ['limit' => 15, 'default' => '', 'comment' => '密码',])->addColumn('status', 'boolean', ['limit' => 1, 'default' => 0, 'comment' => '状态'])->addIndex(['user_name'], ['unique' => true])//为user_name创建索引并设置唯一(唯一索引)->addTimestamps()//默认生成create_time和update_time两个字段->create();
登录后复制

(2)更新表:

$this->table('user')->addColumn('test', 'string', ['limit' => 15, 'default' => '', 'comment' => '测试'])//在user表中增加一个test字段->update();
登录后复制

(3)删除表:

$this->table('user')->drop();
登录后复制

(4)删除字段

$this->table('user')->removeColumn('test')//删除user表中的test字段->save();
登录后复制

[2]:migrate命令:

migrate常用的命令有三个,分别为:

php think migrate:create CreateUser#创建一个迁移类php think migrate:run#执行迁移php think migrate:rollback #迁移回滚
登录后复制

以上就是thinkPHP如何使用migrate实现数据库迁移的详细内容,更多请关注php中文网其它相关文章!

回帖
全部回帖({{commentCount}})
{{item.user.nickname}} {{item.user.group_title}} {{item.friend_time}}
{{item.content}}
{{item.comment_content_show ? '取消' : '回复'}} 删除
回帖
{{reply.user.nickname}} {{reply.user.group_title}} {{reply.friend_time}}
{{reply.content}}
{{reply.comment_content_show ? '取消' : '回复'}} 删除
回帖
收起
没有更多啦~
{{commentLoading ? '加载中...' : '查看更多评论'}}