下面由thinkphp框架教學專欄為大家介紹thinkPHP使用migrate實作資料庫遷移的方法,希望對需要的朋友有幫助!
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安裝成功
#二:使用topthink/think-migration實作資料庫遷移
1:建立遷移類別
在命令列執行
php think migrate:create CreateUser
執行完成之後我們就和在./database/migrateions目錄下建立一個migrate遷移檔案
#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中文網其他相關文章!