您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)使用Laravel5.7怎么實(shí)現(xiàn)數(shù)據(jù)庫遷移,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
Laravel 是一套簡潔、優(yōu)雅的PHP Web開發(fā)框架。它可以讓你從面條一樣雜亂的代碼中解脫出來;它可以幫你構(gòu)建一個(gè)完美的網(wǎng)絡(luò)APP,而且每行代碼都可以簡潔、富于表達(dá)力。
使用 Artisan 命令 make:migration 就可以創(chuàng)建一個(gè)新的遷移:
php artisan make:migration create_users_table
新的遷移位于 database/migrations 目錄下,每個(gè)遷移文件名都包含時(shí)間戳從而允許 Laravel 判斷其順序。
--table 和 --create 選項(xiàng)可以用于指定表名以及該遷移是否要?jiǎng)?chuàng)建一個(gè)新的數(shù)據(jù)表。這些選項(xiàng)只需要簡單放在上述遷移命令后面并指定表名:
php artisan make:migration create_users_table --create=users php artisan make:migration add_votes_to_users_table --table=users
如果你想要指定生成遷移的自定義輸出路徑,在執(zhí)行 make:migration 命令時(shí)可以使用 --path 選項(xiàng),提供的路徑應(yīng)該是相對于應(yīng)用根目錄的。
遷移類包含了兩個(gè)方法:up 和 down。up 方法用于新增表,列或者索引到數(shù)據(jù)庫,而 down 方法就是 up 方法的逆操作,和 up 里的操作相反。
在這兩個(gè)方法中你都要用到 Laravel 的 Schema 構(gòu)建器來創(chuàng)建和修改表,要了解更多 Schema 構(gòu)建器提供的方法,查看其文檔。下面讓我們先看看創(chuàng)建 flights 表的簡單示例:
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateFlightsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('flights', function (Blueprint $table) { $table->increments('id'); $table->string('name'); $table->string('airline'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('flights'); } }
要運(yùn)行應(yīng)用中所有未執(zhí)行的遷移,可以使用 Artisan 命令提供的 migrate 方法:
php artisan migrate
注:如果你正在使用 Homestead 虛擬機(jī),需要在虛擬機(jī)中運(yùn)行上面這條命令。
在生產(chǎn)環(huán)境中強(qiáng)制運(yùn)行遷移
有些遷移操作是毀滅性的,這意味著它們可能造成數(shù)據(jù)的丟失,為了避免在生產(chǎn)環(huán)境數(shù)據(jù)庫中運(yùn)行這些命令,你將會在運(yùn)行這些命令之前被提示并確認(rèn)。想要強(qiáng)制運(yùn)行這些命令而不被提示,可以使用 --force 標(biāo)記:
php artisan migrate --force
回滾遷移
想要回滾最新的一次遷移”操作“,可以使用 rollback 命令,注意這將會回滾最后一批運(yùn)行的遷移,可能包含多個(gè)遷移文件:
php artisan migrate:rollback
你也可以通過 rollback 命令上提供的 step 選項(xiàng)來回滾指定數(shù)目的遷移,例如,下面的命令將會回滾最后五條遷移:
php artisan migrate:rollback --step=5
migrate:reset 命令將會回滾所有的應(yīng)用遷移:
php artisan migrate:reset
在單個(gè)命令中回滾 & 遷移
migrate:refresh 命令將會先回滾所有數(shù)據(jù)庫遷移,然后運(yùn)行 migrate 命令。這個(gè)命令可以有效的重建整個(gè)數(shù)據(jù)庫:
php artisan migrate:refresh // 重建數(shù)據(jù)庫并填充數(shù)據(jù)... php artisan migrate:refresh --seed
當(dāng)然,你也可以回滾或重建指定數(shù)量的遷移 —— 通過 refresh 命令提供的 step 選項(xiàng),例如,下面的命令將會回滾或重建最后五條遷移:
php artisan migrate:refresh --step=5
刪除所有表 & 遷移
migrate:fresh 命令將會先從數(shù)據(jù)庫中刪除所有表然后執(zhí)行 migrate 命令:
php artisan migrate:fresh php artisan migrate:fresh --seed
創(chuàng)建表
使用 Schema 門面上的 create 方法來創(chuàng)建新的數(shù)據(jù)表。create 方法接收兩個(gè)參數(shù),第一個(gè)是表名,第二個(gè)是獲取用于定義新表的 Blueprint 對象的閉包:
Schema::create('users', function ($table) { $table->increments('id'); });
當(dāng)然,創(chuàng)建新表的時(shí)候,可以使用 Schema 構(gòu)建器中的任意列方法來定義數(shù)據(jù)表的列。
檢查表/列是否存在
你可以輕松地使用 hasTable 和 hasColumn 方法檢查表或列是否存在:
if (Schema::hasTable('users')) { // } if (Schema::hasColumn('users', 'email')) { // }
數(shù)據(jù)庫連接 & 表選項(xiàng)
如果你想要在一個(gè)數(shù)據(jù)庫連接上執(zhí)行表結(jié)構(gòu)操作,而該數(shù)據(jù)庫連接并不是默認(rèn)數(shù)據(jù)庫連接,可以使用 connection 方法:
Schema::connection('foo')->create('users', function (Blueprint $table) { $table->increments('id'); });
要設(shè)置表的存儲引擎、字符編碼等選項(xiàng),可以在 Schema 構(gòu)建器上使用如下命令:
命令 | 描述 |
---|---|
$table->engine = 'InnoDB'; | 指定表的存儲引擎(MySQL) |
$table->charset = 'utf8'; | 指定數(shù)據(jù)表的默認(rèn)字符集(MySQL) |
$table->collation = 'utf8_unicode_ci'; | 指定數(shù)據(jù)表的字符序(MySQL) |
$table->temporary(); | 創(chuàng)建臨時(shí)表(除SQL Server) |
重命名/刪除表
要重命名一個(gè)已存在的數(shù)據(jù)表,使用 rename 方法:
Schema::rename($from, $to);
要?jiǎng)h除一個(gè)已存在的數(shù)據(jù)表,可以使用 drop 或 dropIfExists 方法:
Schema::drop('users'); Schema::dropIfExists('users');
通過外鍵重命名表
在重命名表之前,需要驗(yàn)證該表包含的外鍵在遷移文件中有明確的名字,而不是 Laravel 基于慣例分配的名字。否則,外鍵約束名將會指向舊的數(shù)據(jù)表。
創(chuàng)建數(shù)據(jù)列
要更新一個(gè)已存在的表,使用 Schema 門面上的 table 方法,和 create 方法一樣,table 方法接收兩個(gè)參數(shù):表名和獲取用于添加列到表的 Blueprint 實(shí)例的閉包:
Schema::table('users', function (Blueprint $table) { $table->string('email'); });
可用的數(shù)據(jù)列類型
當(dāng)然,Schema 構(gòu)建器包含一系列你可以用來構(gòu)建表的列類型:
命令 | 描述 |
---|---|
$table->bigIncrements('id'); | 等同于自增 UNSIGNED BIGINT(主鍵)列 |
$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 類型(帶時(shí)區(qū))列 |
$table->decimal('amount', 5, 2); | 等同于 DECIMAL 類型列,帶精度和范圍 |
$table->double('column', 15, 8); | 等同于 DOUBLE 類型列,帶精度, 總共15位數(shù)字,小數(shù)點(diǎn)后8位 |
$table->enum('level', ['easy', 'hard']); | 等同于 ENUM 類型列 |
$table->float('amount', 8, 2); | 等同于 FLOAT 類型列,帶精度和總位數(shù) |
$table->geometry('positions'); | 等同于 GEOMETRY 類型列 |
$table->geometryCollection('positions'); | 等同于 GEOMETRYCOLLECTION 類型列 |
$table->increments('id'); | 等同于自增 UNSIGNED INTEGER (主鍵)類型列 |
$table->integer('votes'); | 等同于 INTEGER 類型列 |
$table->ipAddress('visitor'); | 等同于 IP 地址類型列 |
$table->json('options'); | 等同于 JSON 類型列 |
$table->jsonb('options'); | 等同于 JSONB 類型列 |
$table->lineString('positions'); | 等同于 LINESTRING 類型列 |
$table->longText('description'); | 等同于 LONGTEXT 類型列 |
$table->macAddress('device'); | 等同于 MAC 地址類型列 |
$table->mediumIncrements('id'); | 等同于自增 UNSIGNED MEDIUMINT 類型列(主鍵) |
$table->mediumInteger('numbers'); | 等同于 MEDIUMINT 類型列 |
$table->mediumText('description'); | 等同于 MEDIUMTEXT 類型列 |
$table->morphs('taggable'); | 添加一個(gè) UNSIGNED INTEGER 類型的 taggable_id 列和一個(gè) VARCHAR 類型的 taggable_type 列 |
$table->multiLineString('positions'); | 等同于 MULTILINESTRING 類型列 |
$table->multiPoint('positions'); | 等同于 MULTIPOINT 類型列 |
$table->multiPolygon('positions'); | 等同于 MULTIPOLYGON 類型列 |
$table->nullableMorphs('taggable'); | morphs() 列的 nullable 版本 |
$table->nullableTimestamps(); | timestamps() 的別名 |
$table->point('position'); | 等同于 POINT 類型列 |
$table->polygon('positions'); | 等同于 POLYGON 類型列 |
$table->rememberToken(); | 等同于添加一個(gè)允許為空的 remember_token VARCHAR(100) 列 |
$table->smallIncrements('id'); | 等同于自增 UNSIGNED SMALLINT (主鍵)類型列 |
$table->smallInteger('votes'); | 等同于 SMALLINT 類型列 |
$table->softDeletes(); | 新增一個(gè)允許為空的 deleted_at TIMESTAMP 列用于軟刪除 |
$table->softDeletesTz(); | 新增一個(gè)允許為空的 deleted_at TIMESTAMP (帶時(shí)區(qū))列用于軟刪除 |
$table->string('name', 100); | 等同于 VARCHAR 類型列,帶一個(gè)可選長度參數(shù) |
$table->text('description'); | 等同于 TEXT 類型列 |
$table->time('sunrise'); | 等同于 TIME 類型列 |
$table->timeTz('sunrise'); | 等同于 TIME 類型(帶時(shí)區(qū)) |
$table->timestamp('added_on'); | 等同于 TIMESTAMP 類型列 |
$table->timestampTz('added_on'); | 等同于 TIMESTAMP 類型(帶時(shí)區(qū))列 |
$table->timestamps(); | 添加允許為空的 created_at 和 updated_at TIMESTAMP 類型列 |
$table->timestampsTz(); | 添加允許為空的 created_at 和 updated_at TIMESTAMP 類型列(帶時(shí)區(qū)) |
$table->tinyIncrements('numbers'); | 等同于自增的 UNSIGNED TINYINT 類型列(主鍵) |
$table->tinyInteger('numbers'); | 等同于 TINYINT 類型列 |
$table->unsignedBigInteger('votes'); | 等同于無符號的 BIGINT 類型列 |
$table->unsignedDecimal('amount', 8, 2); | 等同于 UNSIGNED DECIMAL 類型列,帶有總位數(shù)和精度 |
$table->unsignedInteger('votes'); | 等同于無符號的 INTEGER 類型列 |
$table->unsignedMediumInteger('votes'); | 等同于無符號的 MEDIUMINT 類型列 |
$table->unsignedSmallInteger('votes'); | 等同于無符號的 SMALLINT 類型列 |
$table->unsignedTinyInteger('votes'); | 等同于無符號的 TINYINT 類型列 |
$table->uuid('id'); | 等同于 UUID 類型列 |
$table->year('birth_year'); | 等同于 YEAR 類型列 |
列修改器
除了上面列出的數(shù)據(jù)列類型之外,在添加列的時(shí)候還可以使用一些其它的列“修改器”,例如,要使列允許為 NULL,可以使用 nullable 方法:
Schema::table('users', function (Blueprint $table) { $table->string('email')->nullable(); });
下面是所有可用的列修改器列表,該列表不包含索引修改器:
修改器 | 描述 |
---|---|
->after('column') | 將該列置于另一個(gè)列之后 (MySQL) |
->autoIncrement() | 設(shè)置 INTEGER 列為自增主鍵 |
->charset('utf8') | 指定數(shù)據(jù)列字符集(MySQL) |
->collation('utf8_unicode_ci') | 指定數(shù)據(jù)列字符序(MySQL/SQL Server) |
->comment('my comment') | 添加注釋信息 |
->default($value) | 指定列的默認(rèn)值 |
->first() | 將該列置為表中第一個(gè)列 (MySQL) |
->nullable($value = true) | 允許該列的值為 NULL |
->storedAs($expression) | 創(chuàng)建一個(gè)存儲生成列(MySQL) |
->unsigned() | 設(shè)置 INTEGER 列為 UNSIGNED(MySQL) |
->useCurrent() | 設(shè)置 TIMESTAMP 列使用 CURRENT_TIMESTAMP 作為默認(rèn)值 |
->virtualAs($expression) | 創(chuàng)建一個(gè)虛擬生成列(MySQL) |
修改數(shù)據(jù)列
先決條件
在修改列之前,確保已經(jīng)將 doctrine/dbal 依賴添加到 composer.json 文件,Doctrine DBAL 庫用于判斷列的當(dāng)前狀態(tài)并創(chuàng)建對列進(jìn)行指定調(diào)整所需的 SQL 語句:
composer require doctrine/dbal
更新列屬性
change 方法允許你修改已存在的列為新的類型,或者修改列的屬性。例如,你可能想要增加 字符串類型列的尺寸,下面讓我們將 name 列的尺寸從 25 增加到 50:
Schema::table('users', function (Blueprint $table) { $table->string('name', 50)->change(); });
我們還可以修改該列允許 NULL 值:
Schema::table('users', function (Blueprint $table) { $table->string('name', 50)->nullable()->change(); });
注:只有以下數(shù)據(jù)列類型能修改:bigInteger, binary, boolean, date, dateTime, dateTimeTz, decimal, integer, json, longText, mediumText, smallInteger, string, text, time, unsignedBigInteger, unsignedInteger 和 unsignedSmallInteger。
重命名列
要重命名一個(gè)列,可以使用表結(jié)構(gòu)構(gòu)建器上的 renameColumn 方法,在重命名一個(gè)列之前,確保 doctrine/dbal 依賴已經(jīng)添加到 composer.json 文件并且已經(jīng)運(yùn)行了 composer update 命令:
Schema::table('users', function (Blueprint $table) { $table->renameColumn('from', 'to'); });
注:暫不支持 enum 類型的列的修改和重命名。
刪除數(shù)據(jù)列
要?jiǎng)h除一個(gè)列,使用 Schema 構(gòu)建器上的 dropColumn 方法,同樣,在此之前,確保已經(jīng)安裝了 doctrine/dbal 依賴:
Schema::table('users', function (Blueprint $table) { $table->dropColumn('votes'); });
你可以通過傳遞列名數(shù)組到 dropColumn 方法以便可以一次從數(shù)據(jù)表中刪除多個(gè)列:
Schema::table('users', function (Blueprint $table) { $table->dropColumn(['votes', 'avatar', 'location']); });
注:SQLite 數(shù)據(jù)庫暫不支持在單個(gè)遷移中刪除或修改多個(gè)列。
有效的命令別名
命令 | 描述 |
---|---|
$table->dropRememberToken(); | 刪除 remember_token 列 |
$table->dropSoftDeletes(); | 刪除 deleted_at 列 |
$table->dropSoftDeletesTz(); | dropSoftDeletes() 方法別名 |
$table->dropTimestamps(); | 刪除 created_at 和 updated_at 列 |
$table->dropTimestampsTz(); | dropTimestamps() 方法別名 |
創(chuàng)建索引
Schema 構(gòu)建器支持多種類型的索引,首先,讓我們看一個(gè)指定列值為唯一索引的例子。要?jiǎng)?chuàng)建該索引,可以使用 unique 方法:
$table->string('email')->unique();
此外,你可以在定義列之后創(chuàng)建索引,例如:
$table->unique('email');
你甚至可以傳遞列名數(shù)組到索引方法來創(chuàng)建組合索引:
$table->index(['account_id', 'created_at']);
Laravel 會自動生成合理的索引名稱,不過你也可以傳遞第二個(gè)參數(shù)到該方法用于指定索引名稱:
$table->index('email', 'unique_email');
可用索引類型
命令 | 描述 |
---|---|
$table->primary('id'); | 添加主鍵索引 |
$table->primary(['id', 'parent_id']); | 添加組合索引 |
$table->unique('email'); | 添加唯一索引 |
$table->index('state'); | 添加普通索引 |
$table->spatialIndex('location'); | 添加空間索引(不支持SQLite) |
索引長度 & MySQL / MariaDB
Laravel 默認(rèn)使用 utf8mb4 字符集,支持在數(shù)據(jù)庫中存儲 emoji 表情。如果你現(xiàn)在運(yùn)行的 MySQL 版本低于 5.7.7(或者低于 10.2.2 版本的 MariaDB),需要手動配置遷移命令生成的默認(rèn)字符串長度,以便 MySQL 為它們創(chuàng)建索引。你可以通過在 AppServiceProvider 中調(diào)用 Schema::defaultStringLength 方法來完成配置:
use Illuminate\Support\Facades\Schema; /** * Bootstrap any application services. * * @return void * @translator laravelacademy.org */ public function boot() { Schema::defaultStringLength(191); }
作為可選方案,你可以為數(shù)據(jù)庫啟用 innodb_large_prefix 選項(xiàng),至于如何合理啟用這個(gè)選項(xiàng),可以參考數(shù)據(jù)庫文檔說明。
重命名索引
要重命名一個(gè)索引,可以使用 renameIndex 方法,這個(gè)方法接收當(dāng)前索引名作為第一個(gè)參數(shù)以及修改后的索引名作為第二個(gè)參數(shù):
$table->renameIndex('from', 'to')
刪除索引
要?jiǎng)h除索引,必須指定索引名。默認(rèn)情況下,Laravel 自動分配適當(dāng)?shù)拿Q給索引 —— 連接表名、列名和索引類型。下面是一些例子:
命令 | 描述 |
---|---|
$table->dropPrimary('users_id_primary'); | 從 “users” 表中刪除主鍵索引 |
$table->dropUnique('users_email_unique'); | 從 “users” 表中刪除唯一索引 |
$table->dropIndex('geo_state_index'); | 從 “geo” 表中刪除普通索引 |
$table->dropSpatialIndex('geo_location_spatialindex'); | 從 “geo” 表中刪除空間索引(不支持SQLite) |
如果要傳遞數(shù)據(jù)列數(shù)組到刪除索引方法,那么相應(yīng)的索引名稱將會通過數(shù)據(jù)表名、列和鍵類型來自動生成:
Schema::table('geo', function (Blueprint $table) { $table->dropIndex(['state']); // Drops index 'geo_state_index' });
外鍵約束
Laravel 還提供了創(chuàng)建外鍵約束的支持,用于在數(shù)據(jù)庫層面強(qiáng)制引用完整性。例如,我們在posts 表中定義了一個(gè)引用 users 表 id 列的 user_id 列:
Schema::table('posts', function (Blueprint $table) { $table->integer('user_id')->unsigned(); $table->foreign('user_id')->references('id')->on('users'); });
你還可以為約束的“on delete”和“on update”屬性指定期望的動作:
$table->foreign('user_id') ->references('id')->on('users') ->onDelete('cascade');
要?jiǎng)h除一個(gè)外鍵,可以使用 dropForeign 方法。外鍵約束和索引使用同樣的命名規(guī)則 —— 連接表名、外鍵名然后加上“_foreign”后綴:
$table->dropForeign('posts_user_id_foreign');
或者,你還可以傳遞在刪除時(shí)會自動使用基于慣例的約束名數(shù)值數(shù)組:
$table->dropForeign(['user_id']);
你可以在遷移時(shí)通過以下方法啟用或關(guān)閉外鍵約束:
Schema::enableForeignKeyConstraints(); Schema::disableForeignKeyConstraints();
以上就是使用Laravel5.7怎么實(shí)現(xiàn)數(shù)據(jù)庫遷移,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。