如果你想要在一个数据库连接上执行表结构操作,而该数据库连接并不是默认数据库连接,可以使用 connection 方法:
Schema::connection('foo')->create('users', function (Blueprint $table) { $table->increments('id'); });
要设置表的存储引擎、字符编码等选项,可以在 Schema 构建器上使用如下命令:
命令 | 描述 |
---|---|
$table->engine = 'InnoDB'; | 指定表的存储引擎(MySQL) |
$table->charset = 'utf8'; | 指定数据表的默认字符集(MySQL) |
$table->collation = 'utf8_unicode_ci'; | 指定数据表的字符序(MySQL) |
$table->temporary(); | 创建临时表(除SQL Server) |
重命名/删除表
要重命名一个已存在的数据表,使用 rename 方法:
Schema::rename($from, $to);
要删除一个已存在的数据表,可以使用 drop 或 dropIfExists 方法:
Schema::drop('users'); Schema::dropIfExists('users');
通过外键重命名表
在重命名表之前,需要验证该表包含的外键在迁移文件中有明确的名字,而不是 Laravel 基于惯例分配的名字。否则,外键约束名将会指向旧的数据表。
数据列
创建数据列
要更新一个已存在的表,使用 Schema 门面上的 table 方法,和 create 方法一样,table 方法接收两个参数:表名和获取用于添加列到表的 Blueprint 实例的闭包:
Schema::table('users', function (Blueprint $table) { $table->string('email'); });
可用的数据列类型
当然,Schema 构建器包含一系列你可以用来构建表的列类型:
命令 | 描述 |
---|---|
$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 类型(带时区)列 |
$table->decimal('amount', 5, 2); | 等同于 DECIMAL 类型列,带精度和范围 |
$table->double('column', 15, 8); | 等同于 DOUBLE 类型列,带精度, 总共15位数字,小数点后8位 |
$table->enum('level', ['easy', 'hard']); | 等同于 ENUM 类型列 |
$table->float('amount', 8, 2); | 等同于 FLOAT 类型列,带精度和总位数 |
$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'); | 添加一个 UNSIGNED INTEGER 类型的 taggable_id 列和一个 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(); | 等同于添加一个允许为空的 remember_token VARCHAR(100) 列 |
$table->smallIncrements('id'); | 等同于自增 UNSIGNED SMALLINT (主键)类型列 |
$table->smallInteger('votes'); | 等同于 SMALLINT 类型列 |
$table->softDeletes(); | 新增一个允许为空的 deleted_at TIMESTAMP 列用于软删除 |
$table->softDeletesTz(); | 新增一个允许为空的 deleted_at TIMESTAMP (带时区)列用于软删除 |
$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('numbers'); | 等同于自增的 UNSIGNED TINYINT 类型列(主键) |
$table->tinyInteger('numbers'); | 等同于 TINYINT 类型列 |
$table->unsignedBigInteger('votes'); | 等同于无符号的 BIGINT 类型列 |
$table->unsignedDecimal('amount', 8, 2); | 等同于 UNSIGNED DECIMAL 类型列,带有总位数和精度 |
$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 类型列 |