laravel使用Schema建立資料表
1、簡介
遷移就像資料庫的版本控制,允許團隊簡單輕鬆的編輯並共享應用的資料庫表結構,遷移通常和Laravel的schema構建器結對從而可以很容易地構建應用的資料庫表結構。如果你曾經告知小組成員需要手動新增列到本地資料庫結構,那麼這正是資料庫遷移所致力於解決的問題。
Laravel 的Schema門面提供了與資料庫系統無關的建立和操縱表的支援,在 Laravel 所支援的所有資料庫系統中提供一致的、優雅的、平滑的API。
2、生成遷移
使用 Artisan 命令make:migration來建立一個新的遷移:
php artisan make:migration create_users_table
新的遷移位於database/migrations目錄下,每個遷移檔名都包含時間戳從而允許 Laravel 判斷其順序。
–table和–create選項可以用於指定表名以及該遷移是否要建立一個新的資料表。這些選項只需要簡單放在上述遷移命令後面並指定表名:
php artisan make:migration create_users_table –create=users
php artisan make:migration add_votes_to_users_table –table=users
如果你想要指定生成遷移的自定義輸出路徑,在執行make:migration命令時可以使用–path選項,提供的路徑應該是相對於應用根目錄的。
3、遷移結構
遷移類包含了兩個方法:up和down。up方法用於新增表,列或者索引到資料庫,而down方法就是up方法的反操作,和up裡的操作相反。
在這兩個方法中你都要用到 Laravel 的schema構建器來建立和修改表,要了解更多Schema構建器提供的方法,參考其文件。下面讓我們先看看建立flights表的簡單示例:
1 <?php 2 3 use Illuminate\Database\Schema\Blueprint; 4 use Illuminate\Database\Migrations\Migration; 5 6 class CreateFlightsTable extends Migration{ 7 /** 8 * 執行遷移 9 *10 * @return void 11 */ 12 public function up() 13 { 14 Schema::create('flights', function (Blueprint $table) { 15 $table->increments('id'); 16 $table->string('name'); 17 $table->string('airline'); 18 $table->timestamps(); 19 }); 20 } 21 22 /** 23 * 撤銷遷移 24 * 25 * @return void 26 */ 27 public function down() 28 { 29 Schema::drop('flights'); 30 } 31 }
4、執行遷移
要執行應用中所有未執行的遷移,可以使用 Artisan 命令提供的migrate方法:
php artisan migrate
注:如果你正在使用Homestead虛擬機器,需要在虛擬機器中執行上面這條命令。
在生產環境中強制執行遷移
有些遷移操作是毀滅性的,這意味著它們可能造成資料的丟失,為了避免在生產環境資料庫中執行這些命令,你將會在執行這些命令之前被提示並確認。想要強制執行這些命令而不被提示,可以使用–force:
php artisan migrate --force
回滾遷移
想要回滾最新的一次遷移”操作“,可以使用rollback命令,注意這將會回滾最後一批執行的遷移,可能包含多個遷移檔案:
php artisan migrate:rollback
你也可以通過rollback命令上提供的step選項來回滾指定數目的遷移,例如,下面的命令將會回滾最後五條遷移:
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選項,例如,下面的命令將會回滾或重建最後五條遷移:
php artisan migrate:refresh --step=5
5、資料表
建立表
使用Schema門面上的create方法來建立新的資料表。create方法接收兩個引數,第一個是表名,第二個是獲取用於定義新表的Blueprint物件的閉包:
1 Schema::create('users', function ($table) { 2 $table->increments('id'); 3 });
當然,建立新表的時候,可以使用schema構建器中的任意列方法來定義資料表的列。
檢查表/列是否存在
你可以輕鬆地使用 hasTable 和 hasColumn 方法檢查表或列是否存在:
if (Schema::hasTable('users')) { // } if (Schema::hasColumn('users', 'email')) { // }
連線&儲存引擎
如果你想要在一個數據庫連線上執行表結構操作,該資料庫連線並不是預設資料庫連線,使用connection方法:
1 Schema::connection('foo')->create('users', function ($table) { 2 $table->increments('id'); 3 });
要設定表的儲存引擎,在schema構建器上設定engine屬性:
1 Schema::create('users', function ($table) { 2 $table->engine = 'InnoDB'; 3 $table->increments('id'); 4 });
重新命名/刪除表
要重新命名一個已存在的資料表,使用rename方法:
1 Schema::rename($from, $to);
要刪除一個已存在的資料表,可以使用drop或dropIfExists方法:
1 Schema::drop('users'); 2 Schema::dropIfExists('users');
通過外來鍵重命名錶
在重命名錶之前,需要驗證該表包含的外來鍵在遷移檔案中有明確的名字,而不是Laravel基於慣例分配的名字。否則,外來鍵約束名將會指向舊的資料表。
6、列
建立列
要更新一個已存在的表,使用Schema門面上的table方法,和create方法一樣,table方法接收兩個引數:表名和獲取用於新增列到表的Blueprint例項的閉包:
1 Schema::table('users', function ($table) { 2 $table->string('email'); 3 });
可用的列型別
當然,schema構建器包含一系列你可以用來構建表的列型別:
命令 描述
1 $table->bigIncrements('id'); 自增ID,型別為bigint 2 $table->bigInteger('votes'); 等同於資料庫中的BIGINT型別 3 $table->binary('data'); 等同於資料庫中的BLOB型別 4 $table->boolean('confirmed'); 等同於資料庫中的BOOLEAN型別 5 $table->char('name', 4); 等同於資料庫中的CHAR型別 6 $table->date('created_at'); 等同於資料庫中的DATE型別 7 $table->dateTime('created_at'); 等同於資料庫中的DATETIME型別 8 $table->dateTimeTz('created_at'); 等同於資料庫中的DATETIME型別(帶時區) 9 $table->decimal('amount', 5, 2); 等同於資料庫中的DECIMAL型別,帶一個精度和範圍 10 $table->double('column', 15, 8); 等同於資料庫中的DOUBLE型別,帶精度, 總共15位數字,小數點後8位. 11 $table->enum('choices', ['foo', 'bar']); 等同於資料庫中的 ENUM型別 12 $table->float('amount'); 等同於資料庫中的 FLOAT 型別 13 $table->increments('id'); 資料庫主鍵自增ID 14 $table->integer('votes'); 等同於資料庫中的 INTEGER 型別 15 $table->ipAddress('visitor'); 等同於資料庫中的 IP 地址 16 $table->json('options'); 等同於資料庫中的 JSON 型別 17 $table->jsonb('options'); 等同於資料庫中的 JSONB 型別 18 $table->longText('description'); 等同於資料庫中的 LONGTEXT 型別 19 $table->macAddress('device'); 等同於資料庫中的 MAC 地址 20 $table->mediumIncrements('id'); 自增ID,型別為無符號的mediumint 21 $table->mediumInteger('numbers'); 等同於資料庫中的 MEDIUMINT型別 22 $table->mediumText('description'); 等同於資料庫中的 MEDIUMTEXT型別 23 $table->morphs('taggable'); 新增一個 INTEGER型別的 taggable_id 列和一個 STRING型別的 taggable_type列 24 $table->nullableTimestamps(); 和 timestamps()一樣但允許 NULL值. 25 $table->rememberToken(); 新增一個 remember_token 列: VARCHAR(100) NULL. 26 $table->smallIncrements('id'); 自增ID,型別為無符號的smallint 27 $table->smallInteger('votes'); 等同於資料庫中的 SMALLINT 型別 28 $table->softDeletes(); 新增一個 deleted_at 列 用於軟刪除. 29 $table->string('email'); 等同於資料庫中的 VARCHAR 列 . 30 $table->string('name', 100); 等同於資料庫中的 VARCHAR,帶一個長度 31 $table->text('description'); 等同於資料庫中的 TEXT 型別 32 $table->time('sunrise'); 等同於資料庫中的 TIME型別 33 $table->timeTz('sunrise'); 等同於資料庫中的 TIME 型別(帶時區) 34 $table->tinyInteger('numbers'); 等同於資料庫中的 TINYINT 型別 35 $table->timestamp('added_on'); 等同於資料庫中的 TIMESTAMP 型別 36 $table->timestampTz('added_on'); 等同於資料庫中的 TIMESTAMP 型別(帶時區) 37 $table->timestamps(); 新增 created_at 和 updated_at列 38 $table->timestampsTz(); 新增 created_at 和 updated_at列(帶時區) 39 $table->unsignedBigInteger('votes'); 等同於資料庫中無符號的 BIGINT 型別 40 $table->unsignedInteger('votes'); 等同於資料庫中無符號的 INT 型別 41 $table->unsignedMediumInteger('votes'); 等同於資料庫中無符號的 MEDIUMINT 型別 42 $table->unsignedSmallInteger('votes'); 等同於資料庫中無符號的 SMALLINT 型別 43 $table->unsignedTinyInteger('votes'); 等同於資料庫中無符號的 TINYINT 型別 44 $table->uuid('id'); 等同於資料庫的UUID
列修改器
除了上面列出的列型別之外,在新增列的時候還可以使用一些其它列“修改器”,例如,要使列預設為null,可以使用nullable方法:
1 Schema::table(‘users’, function (table) {table->string(‘email’)->nullable(); 2 });
下面是所有可用的列修改器列表,該列表不包含索引修改器:
修改器 描述
1 ->after('column') 將該列置於另一個列之後 (僅適用於MySQL) 2 ->comment('my comment') 添加註釋資訊 3 ->default($value) 指定列的預設值 4 ->first() 將該列置為表中第一個列 (僅適用於MySQL) 5 ->nullable() 允許該列的值為NULL 6 ->storedAs($expression) 建立一個儲存生成列(只支援MySQL) 7 ->unsigned() 設定 integer 列為 UNSIGNED 8 ->virtualAs($expression) 建立一個虛擬生成列(只支援MySQL)
修改列
先決條件
在修改列之前,確保已經將doctrine/dbal依賴新增到composer.json檔案,Doctrine DBAL 庫用於判斷列的當前狀態並建立對列進行指定調整所需的SQL語句:
composer require doctrine/dbal
更新列屬性
change方法允許你修改已存在的列為新的型別,或者修改列的屬性。例如,你可能想要增加 string 型別列的尺寸,讓我們將name列的尺寸從 25 增加到 50:
1 Schema::table('users', function ($table) { 2 $table->string('name', 50)->change(); 3 });
我們還可以修改該列允許 NULL 值:
1 Schema::table('users', function ($table) { 2 $table->string('name', 50)->nullable()->change(); 3 });
重新命名列
要重新命名一個列,可以使用表結構構建器上的renameColumn方法,在重新命名一個列之前,確保doctrine/dbal依賴已經新增到composer.json檔案:
1 Schema::table('users', function ($table) { 2 $table->renameColumn('from', 'to'); 3 });
注:暫不支援enum型別的列的修改和重新命名。
刪除列
要刪除一個列,使用schema構建器上的dropColumn方法:
1 Schema::table('users', function ($table) { 2 $table->dropColumn('votes'); 3 });
你可以傳遞列名陣列到dropColumn方法從表中刪除多個列:
1 Schema::table('users', function ($table) { 2 $table->dropColumn(['votes', 'avatar', 'location']); 3 });
注:在從SQLite資料庫刪除列之前,需要新增doctrine/dbal依賴到composer.json檔案並在終端中執行composer update命令來安裝該庫。此外,SQLite資料庫暫不支援在單個遷移中刪除或修改多個列。
7、索引
建立索引
schema構建器支援多種型別的索引,首先,讓我們看一個指定列值為唯一索引的例子。要建立索引,可以使用unique方法:
1 $table->string('email')->unique();
此外,你可以在定義列之後建立索引,例如:
1 $table->unique('email');
你甚至可以傳遞列名陣列到索引方法來建立組合索引:
1 $table->index(['account_id', 'created_at']);
Laravel 會自動生成合理的索引名稱,但是你可以傳遞第二個引數到該方法用於指定索引名稱:
1 $table->index('email', 'my_index_name');
可用索引型別
命令 描述
1 $table->primary('id'); 新增主鍵索引 2 $table->primary(['first', 'last']); 新增混合索引 3 $table->unique('email'); 新增唯一索引 4 $table->unique('state', 'my_index_name'); 指定自定義索引名稱 5 $table->index('state'); 新增普通索引
刪除索引
要刪除索引,必須指定索引名。預設情況下,Laravel 自動分配適當的名稱給索引——簡單連線表名、列名和索引型別。下面是一些例子:
命令 描述
1 $table−>dropPrimary(‘usersidprimary′);
從“users”表中刪除主鍵索引
1 $table->dropUnique(‘users_email_unique’);
從 “users”表中刪除唯一索引
1 $table->dropIndex(‘geo_state_index’);
從 “geo”表中刪除普通索引
如果要傳遞列陣列到刪除索引方法,那麼相應的索引名稱將會通過資料表名、列和關鍵型別來自動生成:
1 Schema::table(‘geo’, function (table) {table->dropIndex([‘state’]); // Drops index ‘geo_state_index’ 2 });
外來鍵約束
Laravel 還提供了建立外來鍵約束的支援,用於在資料庫層面強制引用完整性。例如,我們在posts表中定義了一個引用users表的id列的user_id列:
1 Schema::table(‘posts’, function (table) {table->integer(‘user_id’)->unsigned(); 2 $table->foreign(‘user_id’)->references(‘id’)->on(‘users’); 3 });
你還可以為約束的“on delete”和“on update”屬性指定期望的動作:
1 $table->foreign(‘user_id’) 2 ->references(‘id’)->on(‘users’) 3 ->onDelete(‘cascade’);
要刪除一個外來鍵,可以使用dropForeign方法。外來鍵約束和索引使用同樣的命名規則——連線表名、外來鍵名然後加上“_foreign”字尾:
1 $table->dropForeign(‘posts_user_id_foreign’);
或者,你還可以傳遞在刪除時會自動使用基於慣例的約束名數值陣列:
1 $table->dropForeign([‘user_id’]);
你可以在遷移時通過以下方法啟用或關閉外來鍵約束:
Schema::enableForeignKeyConstraints();
Schema::disableForeignKeyConstraints();
未完待續......