1. 创建数据迁移
创建表迁移
php artisan make:migration create_users_table
--table和--create选项
用于指定表名以及该迁移是否要创建一个新的数据表
创建表
php artisan make:migration create_users_table --create=users
修改表
php artisan make:migration add_votes_to_users_table --table=users
--path选项
用于指定生成迁移的自定义输出路径
提供的路径应该是相对于应用根目录的
2. 迁移结构
up方法:用于新增表,列或者索引到数据库
down方法:用于删除表,列或者索引
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateFlightsTable extends Migration{
/**
* 运行迁移
*
* @return void
*/
public function up()
{
Schema::create('flights', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('airline');
$table->timestamps();
});
}
/**
* 撤销迁移
*
* @return void
*/
public function down()
{
Schema::drop('flights');
}
}
3. 运行迁移
php artisan migrate
运行应用中所有未执行的迁移
如果再运行时遇到”class not found“的错误提示,尝试运行composer dump-autoload命令然后重新运行迁移命令。
php artisan migrate --force
运行迁移不提示信息
有些迁移操作是毁灭性的,这意味着它们可能造成数据的丢失,为了避免在生产环境数据库中运行这些命令,你将会在运行这些命令之前被提示并确认。想要强制运行这些命令而不被提示,可以使用--force:
4. 回滚迁移
php artisan migrate:rollback
回滚最后一批运行的迁移,可能包含多个迁移文件
php artisan migrate:reset
回滚所有的应用迁移
php artisan migrate:refresh
php artisan migrate:refresh --seed
migrate:refresh命令将会先回滚所有数据库迁移
然后运行migrate:refresh --seed命令
这个命令可以有效的重建整个数据库
5. 编写迁移
- 创建表
使用Schema门面上的create方法来创建新的数据表。create方法接收两个参数,第一个是表名,第二个是获取用于定义新表的Blueprint对象的闭包:
Schema::create('users', function ($table) {
$table->increments('id');
});
- 检查表列是否存在
if (Schema::hasTable('users')) {
//
}
if (Schema::hasColumn('users', 'email')) {
//
}
- 连接&存储引擎
如果你想要在一个数据库连接上执行表结构操作,该数据库连接并不是默认数据库连接,使用connection方法
Schema::connection('foo')->create('users', function ($table) {
$table->increments('id');
});
要设置表的存储引擎,在表结构构建器上设置engine属性:
Schema::create('users', function ($table) {
$table->engine = 'InnoDB';
$table->increments('id');
});
- 重命名/删除 表
要重命名一个已存在的数据表,使用rename方法
Schema::rename($from, $to);
要删除一个已存在的数据表,可以使用drop或dropIfExists方法
Schema::drop('users');
Schema::dropIfExists('users');
- 创建列
要更新一个已存在的表,使用Schema门面上的table方法
和create方法一样,table方法接收两个参数:表名和获取用于添加列到表的Blueprint实例的闭包:
Schema::create('users', function ($table) {
$table->increments('id');
$table->string('name');
});
命令 |
描述 |
$table->bigIncrements('id'); |
自增ID,类型为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->decimal('amount', 5, 2); |
等同于数据库中的DECIMAL类型,带一个精度和范围 |
$table->double('column', 15, 8); |
等同于数据库中的DOUBLE类型,带精度, 总共15位数字,小数点后8位 |
$table->enum('choices', ['foo', 'bar']); |
等同于数据库中的 ENUM类型 |
$table->float('amount'); |
等同于数据库中的 FLOAT 类型 |
$table->increments('id'); |
数据库主键自增ID |
$table->integer('votes'); |
等同于数据库中的 INTEGER 类型 |
$table->json('options'); |
等同于数据库中的 JSON 类型 |
$table->jsonb('options'); |
等同于数据库中的 JSONB 类型 |
$table->longText('description'); |
等同于数据库中的 LONGTEXT 类型 |
$table->mediumInteger('numbers'); |
等同于数据库中的 MEDIUMINT类型 |
$table->mediumText('description'); |
等同于数据库中的 MEDIUMTEXT类型 |
$table->morphs('taggable'); |
添加一个 INTEGER类型的 taggable_id 列和一个 STRING类型的 taggable_type列 |
$table->nullableTimestamps(); |
和 timestamps()一样但允许 NULL值. |
$table->rememberToken(); |
添加一个 remember_token 列: VARCHAR(100) NULL. |
$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->tinyInteger('numbers'); |
等同于数据库中的 TINYINT 类型 |
$table->timestamp('added_on'); |
等同于数据库中的 TIMESTAMP 类型 |
$table->timestamps(); |
添加 created_at 和 updated_at列. |
$table->uuid('id'); |
等同于数据库的UUID |
- 列修改器
在添加列的时候还可以使用一些其它列”修改器“
将name列的尺寸从 25 增加到 50:
$table->string('name', 50)->change();
修改该列允许 NULL 值:
$table->string('name', 50)->nullable()->change();
修改该列默认NULL:
$table->string('email')->nullable();
重命名列
注意:暂不支持 enum类型的列的重命名。
$table->renameColumn('from', 'to');
删除列
$table->dropColumn('votes');
删除多个列
$table->dropColumn(['votes', 'avatar', 'location']);
在从SQLite数据库删除列之前,需要添加doctrine/dbal依赖到composer.json文件并在终端中运行composer update命令来安装该库。
修改器 |
描述 |
->first() |
将该列置为表中第一个列 (仅适用于MySQL) |
->after('column') |
将该列置于另一个列之后 (仅适用于MySQL) |
->nullable() |
允许该列的值为NULL |
->default($value) |
指定列的默认值 |
->unsigned() |
设置 integer 列为 UNSIGNED |
- 索引
指定列值为唯一索引
$table->string('email')->unique();
定义列之后创建索引
$table->unique('email');
传递列名数组到索引方法来创建混合索引
$table->index(['account_id', 'created_at']);
命令 |
描述 |
$table->primary('id'); |
添加主键索引 |
$table->primary(['first', 'last']); |
添加混合索引 |
$table->unique('email'); |
添加唯一索引 |
$table->index('state'); |
添加普通索引 |
$table->dropPrimary('users_id_primary'); |
从 “users”表中删除主键索引 |
$table->dropUnique('users_email_unique'); |
从 “users”表中删除唯一索引 |
$table->dropIndex('geo_state_index'); |
从 “geo”表中删除普通索引 |
- 外键约束
例如,我们在posts表中定义了一个引用users表的id列的user_id列:
Schema::table('posts', function ($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');
要删除一个外键,可以使用dropForeign方法。外键约束和索引使用同样的命名规则——连接表名、外键名然后加上”_foreign”后缀:
$table->dropForeign('posts_user_id_foreign');