当前位置:编程学习 > > 正文

laravel查询数据库视图(Laravel5.7 数据库操作迁移的实现方法)

时间:2022-03-28 09:48:52类别:编程学习

laravel查询数据库视图

Laravel5.7 数据库操作迁移的实现方法

简介

所谓迁移就像是数据库的版本控制,这种机制允许团队简单轻松的编辑并共享应用的数据库表结构。迁移通常和 laravel 的 schema 构建器结对从而可以很容易地构建应用的数据库表结构。如果你曾经频繁告知团队成员需要手动添加列到本地数据库表结构以维护本地开发环境,那么这正是数据库迁移所致力于解决的问题。

laravel 的 schema 门面提供了与数据库系统无关的创建和操纵表的支持,在 laravel 所支持的所有数据库系统中提供一致的、优雅的、流式的 api。

生成迁移

使用 artisan 命令 make:migration 就可以创建一个新的迁移:

  • ?
  • 1
  • php artisan make:migration create_users_table
  • 新的迁移位于 database/migrations 目录下,每个迁移文件名都包含时间戳从而允许 laravel 判断其顺序。

    --table 和 --create 选项可以用于指定表名以及该迁移是否要创建一个新的数据表。这些选项只需要简单放在上述迁移命令后面并指定表名:

  • ?
  • 1
  • 2
  • php artisan make:migration create_users_table --create=users
  • php artisan make:migration add_votes_to_users_table --table=users
  • 如果你想要指定生成迁移的自定义输出路径,在执行 make:migration 命令时可以使用 --path 选项,提供的路径应该是相对于应用根目录的。

    迁移结构

    迁移类包含了两个方法:up 和 down。up 方法用于新增表,列或者索引到数据库,而 down 方法就是 up 方法的逆操作,和 up 里的操作相反。

    在这两个方法中你都要用到 laravel 的 schema 构建器来创建和修改表,要了解更多 schema 构建器提供的方法,查看其文档。下面让我们先看看创建 flights 表的简单示例:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • <?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');
  •   }
  • }
  • 运行迁移

    要运行应用中所有未执行的迁移,可以使用 artisan 命令提供的 migrate 方法:

  • ?
  • 1
  • php artisan migrate
  • 注:如果你正在使用 homestead 虚拟机,需要在虚拟机中运行上面这条命令。

    在生产环境中强制运行迁移

    有些迁移操作是毁灭性的,这意味着它们可能造成数据的丢失,为了避免在生产环境数据库中运行这些命令,你将会在运行这些命令之前被提示并确认。想要强制运行这些命令而不被提示,可以使用 --force 标记:

  • ?
  • 1
  • php artisan migrate --force
  • 回滚迁移

    想要回滚最新的一次迁移”操作“,可以使用 rollback 命令,注意这将会回滚最后一批运行的迁移,可能包含多个迁移文件:

  • ?
  • 1
  • php artisan migrate:rollback
  • 你也可以通过 rollback 命令上提供的 step 选项来回滚指定数目的迁移,例如,下面的命令将会回滚最后五条迁移:

  • ?
  • 1
  • php artisan migrate:rollback --step=5
  • migrate:reset 命令将会回滚所有的应用迁移:

  • ?
  • 1
  • php artisan migrate:reset
  • 在单个命令中回滚 & 迁移

    migrate:refresh 命令将会先回滚所有数据库迁移,然后运行 migrate 命令。这个命令可以有效的重建整个数据库:

  • ?
  • 1
  • 2
  • 3
  • 4
  • php artisan migrate:refresh
  •  
  • // 重建数据库并填充数据...
  • php artisan migrate:refresh --seed
  • 当然,你也可以回滚或重建指定数量的迁移 —— 通过 refresh 命令提供的 step 选项,例如,下面的命令将会回滚或重建最后五条迁移:

  • ?
  • 1
  • php artisan migrate:refresh --step=5
  • 删除所有表 & 迁移

    migrate:fresh 命令将会先从数据库中删除所有表然后执行 migrate 命令:

  • ?
  • 1
  • 2
  • 3
  • php artisan migrate:fresh
  •  
  • php artisan migrate:fresh --seed
  • 数据表

    创建表

    使用 schema 门面上的 create 方法来创建新的数据表。create 方法接收两个参数,第一个是表名,第二个是获取用于定义新表的 blueprint 对象的闭包:

  • ?
  • 1
  • 2
  • 3
  • schema::create('users', function ($table) {
  •   $table->increments('id');
  • });
  • 当然,创建新表的时候,可以使用 schema 构建器中的任意列方法来定义数据表的列。

    检查表/列是否存在

    你可以轻松地使用 hastable 和 hascolumn 方法检查表或列是否存在:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • if (schema::hastable('users')) {
  •   //
  • }
  •  
  • if (schema::hascolumn('users', 'email')) {
  •   //
  • }
  • 数据库连接 & 表选项

    如果你想要在一个数据库连接上执行表结构操作,而该数据库连接并不是默认数据库连接,可以使用 connection 方法:

  • ?
  • 1
  • 2
  • 3
  • 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 方法:

  • ?
  • 1
  • schema::rename($from, $to);
  • 要删除一个已存在的数据表,可以使用 drop 或 dropifexists 方法:

  • ?
  • 1
  • 2
  • schema::drop('users');
  • schema::dropifexists('users');
  • 通过外键重命名表

    在重命名表之前,需要验证该表包含的外键在迁移文件中有明确的名字,而不是 laravel 基于惯例分配的名字。否则,外键约束名将会指向旧的数据表。

    数据列

    创建数据列

    要更新一个已存在的表,使用 schema 门面上的 table 方法,和 create 方法一样,table 方法接收两个参数:表名和获取用于添加列到表的 blueprint 实例的闭包:

  • ?
  • 1
  • 2
  • 3
  • 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 类型列

    列修改器

    除了上面列出的数据列类型之外,在添加列的时候还可以使用一些其它的列“修改器”,例如,要使列允许为 null,可以使用 nullable 方法:

  • ?
  • 1
  • 2
  • 3
  • schema::table('users', function (blueprint $table) {
  •   $table->string('email')->nullable();
  • });
  • 下面是所有可用的列修改器列表,该列表不包含索引修改器:

    修改器 描述
    ->after('column') 将该列置于另一个列之后 (mysql)
    ->autoincrement() 设置 integer 列为自增主键
    ->charset('utf8') 指定数据列字符集(mysql)
    ->collation('utf8_unicode_ci') 指定数据列字符序(mysql/sql server)
    ->comment('my comment') 添加注释信息
    ->default($value) 指定列的默认值
    ->first() 将该列置为表中第一个列 (mysql)
    ->nullable($value = true) 允许该列的值为 null
    ->storedas($expression) 创建一个存储生成列(mysql)
    ->unsigned() 设置 integer 列为 unsigned(mysql)
    ->usecurrent() 设置 timestamp 列使用 current_timestamp 作为默认值
    ->virtualas($expression) 创建一个虚拟生成列(mysql)

    修改数据列

    先决条件

    在修改列之前,确保已经将 doctrine/dbal 依赖添加到 composer.json 文件,doctrine dbal 库用于判断列的当前状态并创建对列进行指定调整所需的 sql 语句:

  • ?
  • 1
  • composer require doctrine/dbal
  • 更新列属性

    change 方法允许你修改已存在的列为新的类型,或者修改列的属性。例如,你可能想要增加 字符串类型列的尺寸,下面让我们将 name 列的尺寸从 25 增加到 50:

  • ?
  • 1
  • 2
  • 3
  • schema::table('users', function (blueprint $table) {
  •   $table->string('name', 50)->change();
  • });
  • 我们还可以修改该列允许 null 值:

  • ?
  • 1
  • 2
  • 3
  • schema::table('users', function (blueprint $table) {
  •   $table->string('name', 50)->nullable()->change();
  • });
  • 注:只有以下数据列类型能修改:biginteger, binary, boolean, date, datetime, datetimetz, decimal, integer, json, longtext, mediumtext, smallinteger, string, text, time, unsignedbiginteger, unsignedinteger 和 unsignedsmallinteger。

    重命名列

    要重命名一个列,可以使用表结构构建器上的 renamecolumn 方法,在重命名一个列之前,确保 doctrine/dbal 依赖已经添加到 composer.json 文件并且已经运行了 composer update 命令:

  • ?
  • 1
  • 2
  • 3
  • schema::table('users', function (blueprint $table) {
  •   $table->renamecolumn('from', 'to');
  • });
  • 注:暂不支持 enum 类型的列的修改和重命名。

    删除数据列

    要删除一个列,使用 schema 构建器上的 dropcolumn 方法,同样,在此之前,确保已经安装了 doctrine/dbal 依赖:

  • ?
  • 1
  • 2
  • 3
  • schema::table('users', function (blueprint $table) {
  •   $table->dropcolumn('votes');
  • });
  • 你可以通过传递列名数组到 dropcolumn 方法以便可以一次从数据表中删除多个列:

  • ?
  • 1
  • 2
  • 3
  • schema::table('users', function (blueprint $table) {
  •   $table->dropcolumn(['votes', 'avatar', 'location']);
  • });
  • 注:sqlite 数据库暂不支持在单个迁移中删除或修改多个列。

    有效的命令别名

    命令 描述
    $table->dropremembertoken(); 删除 remember_token 列
    $table->dropsoftdeletes(); 删除 deleted_at 列
    $table->dropsoftdeletestz(); dropsoftdeletes() 方法别名
    $table->droptimestamps(); 删除 created_at 和 updated_at 列
    $table->droptimestampstz(); droptimestamps() 方法别名

    索引

    创建索引

    schema 构建器支持多种类型的索引,首先,让我们看一个指定列值为唯一索引的例子。要创建该索引,可以使用 unique 方法:

  • ?
  • 1
  • $table->string('email')->unique();
  • 此外,你可以在定义列之后创建索引,例如:

  • ?
  • 1
  • $table->unique('email');
  • 你甚至可以传递列名数组到索引方法来创建组合索引:

  • ?
  • 1
  • $table->index(['account_id', 'created_at']);
  • laravel 会自动生成合理的索引名称,不过你也可以传递第二个参数到该方法用于指定索引名称:

  • ?
  • 1
  • $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 默认使用 utf8mb4 字符集,支持在数据库中存储 emoji 表情。如果你现在运行的 mysql 版本低于 5.7.7(或者低于 10.2.2 版本的 mariadb),需要手动配置迁移命令生成的默认字符串长度,以便 mysql 为它们创建索引。你可以通过在 appserviceprovider 中调用 schema::defaultstringlength 方法来完成配置:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • use illuminate\support\facades\schema;
  •  
  • /**
  •  * bootstrap any application services.
  •  *
  •  * @return void
  •  * @translator laravelacademy.org
  •  */
  • public function boot()
  • {
  •   schema::defaultstringlength(191);
  • }
  • 作为可选方案,你可以为数据库启用 innodb_large_prefix 选项,至于如何合理启用这个选项,可以参考数据库文档说明。

    重命名索引

    要重命名一个索引,可以使用 renameindex 方法,这个方法接收当前索引名作为第一个参数以及修改后的索引名作为第二个参数:

  • ?
  • 1
  • $table->renameindex('from', 'to')
  • 删除索引

    要删除索引,必须指定索引名。默认情况下,laravel 自动分配适当的名称给索引 —— 连接表名、列名和索引类型。下面是一些例子:

    命令 描述
    $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)

    如果要传递数据列数组到删除索引方法,那么相应的索引名称将会通过数据表名、列和键类型来自动生成:

  • ?
  • 1
  • 2
  • 3
  • schema::table('geo', function (blueprint $table) {
  •   $table->dropindex(['state']); // drops index 'geo_state_index'
  • });
  • 外键约束

    laravel 还提供了创建外键约束的支持,用于在数据库层面强制引用完整性。例如,我们在posts 表中定义了一个引用 users 表 id 列的 user_id 列:

  • ?
  • 1
  • 2
  • 3
  • 4
  • schema::table('posts', function (blueprint $table) {
  •   $table->integer('user_id')->unsigned();
  •   $table->foreign('user_id')->references('id')->on('users');
  • });
  • 你还可以为约束的“on delete”和“on update”属性指定期望的动作:

  • ?
  • 1
  • 2
  • 3
  • $table->foreign('user_id')
  •    ->references('id')->on('users')
  •    ->ondelete('cascade');
  • 要删除一个外键,可以使用 dropforeign 方法。外键约束和索引使用同样的命名规则 —— 连接表名、外键名然后加上“_foreign”后缀:

  • ?
  • 1
  • $table->dropforeign('posts_user_id_foreign');
  • 或者,你还可以传递在删除时会自动使用基于惯例的约束名数值数组:

  • ?
  • 1
  • $table->dropforeign(['user_id']);
  • 你可以在迁移时通过以下方法启用或关闭外键约束:

  • ?
  • 1
  • 2
  • schema::enableforeignkeyconstraints();
  • schema::disableforeignkeyconstraints();
  • 注:由于使用外键风险级联删除风险较高,一般情况下我们很少使用外键,而是通过代码逻辑来实现级联操作。

    以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。

    上一篇下一篇

    猜您喜欢

    热门推荐