您好,登錄后才能下訂單哦!
這篇文章主要介紹了Laravel中數據庫遷移的操作方法是什么的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Laravel中數據庫遷移的操作方法是什么文章都會有所收獲,下面我們一起來看看吧。
在laravel中使用make:migration命令來創建遷移
php artisan make:migration create_user_table
執行上面的命令后這時候會在database/migrations 目錄下生成對應的遷移文件,每個遷移的文件名都包含一個時間戳來讓 Laravel 確認遷移的順序
一個遷移類包含兩個方法: up 和 down。up 方法是用于新增數據庫的數據表、字段或者索引的,而 down 方法應該與 up 方法的執行操作相反。
public function up() { Schema::create('user', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); }
public function down() { Schema::dropIfExists('user'); }
php artisan migrate
大多數遷移操作都是破壞性的,這意味著也許會丟失數據。為了防止有人在生產環境數據中運行這些命令,在執行這些命令之前將提示你進行確認。如果要強制遷移命令在沒有提示的情況下運行,請使用 --force 參數
php artisan migrate --force
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
在laravel的數據庫遷移中,支持的字段類型有:
命令 | 描述 |
---|---|
$table->bigIncrements('id'); | 遞增 ID(主鍵),相當于「UNSIGNED BIG INTEGER」 |
$table->bigInteger('votes'); | 相當于 BIGINT |
$table->binary('data'); | 相當于 BLOB |
$table->boolean('confirmed'); | 相當于 BOOLEAN |
$table->char('name', 100); | 相當于帶有長度的 CHAR |
$table->date('created_at'); | 相當于 DATE |
$table->dateTime('created_at'); | 相當于 DATETIME |
$table->dateTimeTz('created_at'); | 相當于帶時區 DATETIME |
$table->decimal('amount', 8, 2); | 相當于帶有精度與基數 DECIMAL |
$table->double('amount', 8, 2); | 相當于帶有精度與基數 DOUBLE |
$table->enum('level', ['easy', 'hard']); | 相當于 ENUM |
$table->float('amount', 8, 2); | 相當于帶有精度與基數 FLOAT |
$table->geometry('positions'); | 相當于 GEOMETRY |
$table->geometryCollection('positions'); | 相當于 GEOMETRYCOLLECTION |
$table->increments('id'); | 遞增的 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'); | 遞增 ID (主鍵) ,相當于「UNSIGNED MEDIUM INTEGER」 |
$table->mediumInteger('votes'); | 相當于 MEDIUMINT |
$table->mediumText('description'); | 相當于 MEDIUMTEXT |
$table->morphs('taggable'); | 相當于加入遞增的 taggable_id 與字符串 taggable_type |
$table->uuidMorphs('taggable'); | 相當于加入 taggable_id 與字符串 taggable_typeUUID 列。 |
$table->multiLineString('positions'); | 相當于 MULTILINESTRING |
$table->multiPoint('positions'); | 相當于 MULTIPOINT |
$table->multiPolygon('positions'); | 相當于 MULTIPOLYGON |
$table->nullableMorphs('taggable'); | 相當于可空版本的 morphs () 字段 |
$table->nullableUuidMorphs('taggable'); | 相當于可空版本的 uuidMorphs() 字段 |
$table->nullableTimestamps(); | 相當于可空版本的 timestamps() 字段 |
$table->point('position'); | 相當于 POINT |
$table->polygon('positions'); | 相當于 POLYGON |
$table->rememberToken(); | 相當于可空版本的 VARCHAR (100) 的 remember_token 字段 |
$table->set('flavors', ['strawberry', 'vanilla']); | 相當于 SET |
$table->smallIncrements('id'); | 遞增 ID(主鍵),相當于「UNSIGNED SMALLINT」 |
$table->smallInteger('votes'); | 相當于 SMALLINT |
$table->softDeletes(); | 相當于為軟刪除添加一個可空的 deleted_at 字段 |
$table->softDeletesTz(); | 相當于為軟刪除添加一個可空的 帶時區的 deleted_at 字段 |
$table->string('name', 100); | 相當于帶長度的 VARCHAR |
$table->text('description'); | 相當于 TEXT |
$table->time('sunrise'); | 相當于 TIME |
$table->timeTz('sunrise'); | 相當于帶時區的 TIME |
$table->timestamp('added_on'); | 相當于 TIMESTAMP |
$table->timestampTz('added_on'); | 相當于帶時區的 TIMESTAMP |
$table->timestamps(); | 相當于可空的 created_at 和 updated_at TIMESTAMP |
$table->timestampsTz(); | 相當于可空且帶時區的 created_at 和 updated_at TIMESTAMP |
$table->tinyIncrements('id'); | 相當于自動遞增 UNSIGNED TINYINT |
$table->tinyInteger('votes'); | 相當于 TINYINT |
$table->unsignedBigInteger('votes'); | 相當于 Unsigned BIGINT |
$table->unsignedDecimal('amount', 8, 2); | 相當于帶有精度和基數的 UNSIGNED DECIMAL |
$table->unsignedInteger('votes'); | 相當于 Unsigned INT |
$table->unsignedMediumInteger('votes'); | 相當于 Unsigned MEDIUMINT |
$table->unsignedSmallInteger('votes'); | 相當于 Unsigned SMALLINT |
$table->unsignedTinyInteger('votes'); | 相當于 Unsigned TINYINT |
$table->uuid('id'); | 相當于 UUID |
$table->year('birth_year'); | 相當于 YEAR |
在laravel的數據庫遷移中,支持的字段修飾符有:
命令 | 描述 |
---|---|
->after('column') | 將此字段放置在其它字段 "之后" (MySQL) |
->autoIncrement() | 將 INTEGER 類型的字段設置為自動遞增的主鍵 |
->charset('utf8') | 指定一個字符集 (MySQL) |
->collation('utf8_unicode_ci') | 指定列的排序規則 (MySQL/SQL Server) |
->comment('my comment') | 為字段增加注釋 (MySQL) |
->default($value) | 為字段指定 "默認" 值 |
->first() | 將此字段放置在數據表的 "首位" (MySQL) |
->nullable($value = true) | 此字段允許寫入 NULL 值(默認情況下) |
->storedAs($expression) | 創建一個存儲生成的字段 (MySQL) |
->unsigned() | 設置 INTEGER 類型的字段為 UNSIGNED (MySQL) |
->useCurrent() | 將 TIMESTAMP 類型的字段設置為使用 CURRENT_TIMESTAMP 作為默認值 |
->virtualAs($expression) | 創建一個虛擬生成的字段 (MySQL) |
->generatedAs($expression) | 使用指定的序列生成標識列(PostgreSQL) |
->always() | 定義序列值優先于標識列的輸入 (PostgreSQL) |
->primary('id') | 添加主鍵 |
->primary(['id', 'parent_id']) | 添加復合鍵 |
->unique('email') | 添加唯一索引 |
->index('state') | 添加普通索引 |
->spatialIndex('location') | 添加空間索引(不支持 SQLite) |
->renameIndex('from', 'to') | 重命名索引 |
->dropPrimary('users_id_primary') | 刪除主鍵 |
->dropUnique('users_email_unique'); | 刪除唯一索引 |
>dropIndex('geo_state_index'); | 刪除基本索引 |
->dropSpatialIndex('geo_location_spatialindex'); | 刪除空間索引(不支持 SQLite) |
實例:
Schema::table('users', function (Blueprint $table) { $table->string('email')->nullable(); });
change 方法可以將現有的字段類型修改為新的類型或修改屬性,例:
Schema::table('users', function (Blueprint $table) { $table->string('name', 50)->change(); });
renameColumn方法來重命名字段,依賴于doctrine/dbal拓展,例:
Schema::table('users', function (Blueprint $table) { $table->renameColumn('from', 'to'); });
dropColumn 方法來刪除字段,例:
Schema::table('users', function (Blueprint $table) { $table->dropColumn(['votes', 'avatar', 'location']);//刪除votes,avatar,location字段 });
Laravel 默認使用 utf8mb4 編碼,它支持在數據庫中儲存 emojis 。如果你是在版本低于 5.7.7 的 MySQL 或者版本低于 10.2.2 的 MariaDB 上創建索引,那你就需要手動配置數據庫遷移的默認字符串長度。即在 app/Providers/AppServiceProvider 中調用 Schema::defaultStringLength 方法來配置它
use Illuminate\Support\Facades\Schema; /** * Bootstrap any application services. * * @return void */ public function boot() { Schema::defaultStringLength(191); }
Laravel 還支持創建用于在數據庫層中的強制引用完整性的外鍵約束。例如,讓我們在 posts 表上定義一個引用 users 表的 id 字段的 user_id 字段:
Schema::table('posts', function (Blueprint $table) { $table->unsignedBigInteger('user_id'); $table->foreign('user_id')->references('id')->on('users'); });
在遷移文件中使用以下方法來開啟或關閉外鍵約束
Schema::enableForeignKeyConstraints(); Schema::disableForeignKeyConstraints();
關于“Laravel中數據庫遷移的操作方法是什么”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Laravel中數據庫遷移的操作方法是什么”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。