實例詳解Laravel資料庫遷移的方法

小云云
發布: 2023-03-19 19:04:01
原創
1499 人瀏覽過

本文主要介紹Laravel 的資料庫遷移的方法,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧,希望能幫助大家。

產生遷移

--table 和 --create 選項可用來指定資料表的名稱,或是該遷移執行時會建立的新資料表。這些選項需在預先產生遷移檔案時填入指定的資料表:


php artisan make:migration create_users_table
php artisan make:migration create_users_table --create=users
php artisan make:migration add_votes_to_users_table --table=users
登入後複製

新增欄位

##\database\migrations \2017_07_30_133748_create_users_table.php


<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateUsersTable extends Migration
{
  /**
   * 运行数据库迁移
   *
   * @return void
   */
  public function up()
  {
    //
      Schema::create(&#39;users&#39;,function (Blueprint $table){
        $table->increments(&#39;id&#39;)->comment(&#39;递增ID&#39;);
        $table->string(&#39;email&#39;,60)->comment(&#39;会员Email&#39;);
        $table->string(&#39;phone&#39;,20)->comment(&#39;会员手机号&#39;);
        $table->string(&#39;username&#39;,60)->comment(&#39;用户名&#39;);
        $table->string(&#39;password&#39;,32)->comment(&#39;用户密码&#39;);
        $table->char(&#39;rank&#39;,10)->comment(&#39;会员等级&#39;);
        $table->unsignedSmallInteger(&#39;sex&#39;)->comment(&#39;性别;0保密;1男;2女&#39;);
        $table->unsignedSmallInteger(&#39;status&#39;)->comment(&#39;用户状态&#39;);
        $table->ipAddress(&#39;last_ip&#39;)->default(&#39;0.0.0.0&#39;)->comment(&#39;最后一次登录IP&#39;);
        $table->timeTz(&#39;last_login&#39;)->comment(&#39;最后一次登录时间&#39;);
        $table->timestamps();
      });
  }

  /**
   * 回滚数据库迁移
   *
   * @return void
   */
  public function down()
  {
    //
    Schema::drop(&#39;users&#39;);
  }
}
登入後複製

要建立一張新的資料表,可以使用Schema facade 的create 方法。 create 方法接收兩個參數:第一個參數為資料表的名稱,第二個參數為一個閉包,此閉包會接收一個用於定義新資料表的Blueprint 物件

你可以方便地使用hasTable 和hasColumn 方法來檢查資料表或欄位是否存在:


if (Schema::hasTable(&#39;users&#39;)) {
  //
}
if (Schema::hasColumn(&#39;users&#39;, &#39;email&#39;)) {
  //
}
登入後複製

如果你想要在一個非預設的資料庫連線中進行資料庫結構操作,可以使用connection 方法:


Schema::connection(&#39;foo&#39;)->create(&#39;users&#39;, function (Blueprint $table) {
  $table->increments(&#39;id&#39;);
});
登入後複製

你可以在資料庫結構建構器上設定engine 屬性來設定資料表的儲存引擎:


Schema::create(&#39;users&#39;, function (Blueprint $table) {
  $table->engine = &#39;InnoDB&#39;;
  $table->increments(&#39;id&#39;);
});
登入後複製

重新命名與刪除資料表


Schema::rename($from, $to);//重命名

//删除已存在的数据表
Schema::drop(&#39;users&#39;);
Schema::dropIfExists(&#39;users&#39;);
登入後複製

#建立欄位


Schema::table(&#39;users&#39;, function (Blueprint $table) {
  $table->string(&#39;email&#39;);
});
登入後複製
命令描述
$table->bigIncrements('id');递增 ID(主键),相当于「UNSIGNED BIG INTEGER」型态。
$table->bigInteger('votes');相当于 BIGINT 型态。
$table->binary('data');相当于 BLOB 型态。
$table->boolean('confirmed');相当于 BOOLEAN 型态。
$table->char('name', 4);相当于 CHAR 型态,并带有长度。
$table->date('created_at');相当于 DATE 型态
$table->dateTime('created_at');相当于 DATETIME 型态。
$table->dateTimeTz('created_at');DATETIME (带时区) 形态
$table->decimal('amount', 5, 2);相当于 DECIMAL 型态,并带有精度与基数。
$table->double('column', 15, 8);相当于 DOUBLE 型态,总共有 15 位数,在小数点后面有 8 位数。
$table->enum('choices', ['foo', 'bar']);相当于 ENUM 型态。
$table->float('amount', 8, 2);相当于 FLOAT 型态,总共有 8 位数,在小数点后面有 2 位数。
$table->increments('id');递增的 ID (主键),使用相当于「UNSIGNED INTEGER」的型态。
$table->integer('votes');相当于 INTEGER 型态。
$table->ipAddress('visitor');相当于 IP 地址形态。
$table->json('options');相当于 JSON 型态。
$table->jsonb('options');相当于 JSONB 型态。
$table->longText('description');相当于 LONGTEXT 型态。
$table->macAddress('device');相当于 MAC 地址形态。
$table->mediumIncrements('id');递增 ID (主键) ,相当于「UNSIGNED MEDIUM INTEGER」型态。
$table->mediumInteger('numbers');相当于 MEDIUMINT 型态。
$table->mediumText('description');相当于 MEDIUMTEXT 型态。
$table->morphs('taggable');加入整数 taggable_id 与字符串 taggable_type。
$table->nullableMorphs('taggable');与 morphs() 字段相同,但允许为NULL。
$table->nullableTimestamps();与 timestamps() 相同,但允许为 NULL。
$table->rememberToken();加入 remember_token 并使用 VARCHAR(100) NULL。
$table->smallIncrements('id');递增 ID (主键) ,相当于「UNSIGNED SMALL INTEGER」型态。
$table->smallInteger('votes');相当于 SMALLINT 型态。
$table->softDeletes();加入 deleted_at 字段用于软删除操作。
$table->string('email');相当于 VARCHAR 型态。
$table->string('name', 100);相当于 VARCHAR 型态,并带有长度。
$table->text('description');相当于 TEXT 型态。
$table->time('sunrise');相当于 TIME 型态。
$table->timeTz('sunrise');相当于 TIME (带时区) 形态。
$table->tinyInteger('numbers');相当于 TINYINT 型态。
$table->timestamp('added_on');相当于 TIMESTAMP 型态。
$table->timestampTz('added_on');相当于 TIMESTAMP (带时区) 形态。
$table->timestamps();加入 created_at 和 updated_at 字段。
$table->timestampsTz();加入 created_at and updated_at (带时区) 字段,并允许为NULL。
$table->unsignedBigInteger('votes');相当于 Unsigned BIGINT 型态。
$table->unsignedInteger('votes');相当于 Unsigned INT 型态。
$table->unsignedMediumInteger('votes');相当于 Unsigned MEDIUMINT 型态。
$table->unsignedSmallInteger('votes');相当于 Unsigned SMALLINT 型态。
$table->unsignedTinyInteger('votes');相当于 Unsigned TINYINT 型态。
$table->uuid('id');相当于 UUID 型态。

字段修饰


Schema::table(&#39;users&#39;, function (Blueprint $table) {
  $table->string(&#39;email&#39;)->nullable();
});
登入後複製
ModifierDescription
->after('column')将此字段放置在其它字段「之后」(仅限 MySQL)
->comment('my comment')增加注释
->default($value)为此字段指定「默认」值
->first()将此字段放置在数据表的「首位」(仅限 MySQL)
->nullable()此字段允许写入 NULL 值
->storedAs($expression)创建一个存储的生成字段 (仅限 MySQL)
->unsigned()设置 integer 字段为 UNSIGNED
->virtualAs($expression)创建一个虚拟的生成字段 (仅限 MySQL)

字段更新


Schema::table(&#39;users&#39;, function (Blueprint $table) {
  $table->string(&#39;phone&#39;,20)->change();
  $table->string(&#39;username&#39;,60)->->nullable()->change();
});
登入後複製

重命名字段


Schema::table(&#39;users&#39;, function (Blueprint $table) {
  $table->renameColumn(&#39;from&#39;, &#39;to&#39;);
});
登入後複製

字段移除


Schema::table(&#39;users&#39;, function (Blueprint $table) {
  $table->dropColumn([&#39;last_ip&#39;, &#39;last_login&#39;]);
});
登入後複製

在使用字段更新,重命名字段,字段移除之前,请务必在你的 composer.json文件require键名中添加< "doctrine/dbal": "^2.5">值。然后composer update进行更新或


composer require doctrine/dbal
登入後複製

创建索引


$table->string(&#39;email&#39;)->unique();
登入後複製
CommandDescription
$table->primary('id');加入主键。
$table->primary(['first', 'last']);加入复合键。
$table->unique('email');加入唯一索引。
$table->unique('state', 'my_index_name');自定义索引名称。
$table->unique(['first', 'last']);加入复合唯一键。
$table->index('state');加入基本索引。

开启和关闭外键约束


Schema::enableForeignKeyConstraints();
Schema::disableForeignKeyConstraints();
登入後複製

运行迁移


php artisan migrate
登入後複製

在线上环境强制执行迁移


php artisan migrate --force
登入後複製

回滚迁移

若要回滚最后一次迁移,则可以使用 rollback 命令。此命令是对上一次执行的「批量」迁移回滚,其中可能包括多个迁移文件:


php artisan migrate:rollback
登入後複製

在 rollback 命令后加上 step 参数,你可以限制回滚迁移的个数。例如,下面的命令将会回滚最后的 5 个迁移。


php artisan migrate:rollback --step=5
登入後複製

migrate:reset 命令可以回滚应用程序中的所有迁移:


php artisan migrate:reset
登入後複製

使用单个命令来执行回滚或迁移

migrate:refresh 命令不仅会回滚数据库的所有迁移还会接着运行 migrate 命令。所以此命令可以有效的重新创建整个数据库:


php artisan migrate:refresh
// 刷新数据库结构并执行数据填充
php artisan migrate:refresh --seed
登入後複製

使用 refresh 命令并加上 step 参数,你也可以限制执行回滚和再迁移的个数。比如,下面的命令会回滚并再迁移最后的 5 个迁移:


php artisan migrate:refresh --step=5
登入後複製

无法生成迁移文件

在 Laravel 项目中,由于测试,有时候用 PHP artisan make:migration create_xxx_table 创建数据库迁移。如果把创建的迁移文件 database/migrations/2017_07_30_133748_create_xxx_table.php 文件给删除了,再次执行 php artisan make:migration create_xxx_table 会报错:

复制代码 代码如下:


[ErrorException]                                                                                                                                         
 include(E:\laraver\vendor\composer/../../database/migrations/2017_07_30_133748_create_users_table.php): failed to open stream: No such file or directory 

重新运行 composer update 又可以执行上面的命令了。

相关推荐:

PHP开发框架Laravel数据库操作方法总结

以上是實例詳解Laravel資料庫遷移的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!