本文介绍了Laravel 的数据库迁移的方法,分享给大家,具体如下:
--table 和 --create 选项可用来指定数据表的名称,或是该迁移被执行时会创建的新数据表。这些选项需在预生成迁移文件时填入指定的数据表:
PHP;">
PHP artisan make:migration create_users_table
PHP artisan make:migration create_users_table --create=users
PHP artisan make:migration add_votes_to_users_table --table=users
\database\migrations\2017_07_30_133748_create_users_table.PHP
PHP;">
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
- 运行数据库迁移
-
- @return void
*/
public function up()
{
//
Schema::create('users',function (Blueprint $table){
$table->increments('id')->comment('递增ID');
$table->string('email',60)->comment('会员Email');
$table->string('phone',20)->comment('会员手机号');
$table->string('username',60)->comment('用户名');
$table->string('password',32)->comment('用户密码');
$table->char('rank',10)->comment('会员等级');
$table->unsignedSmallInteger('sex')->comment('性别;0保密;1男;2女');
$table->unsignedSmallInteger('status')->comment('用户状态');
$table->ipAddress('last_ip')->default('0.0.0.0')->comment('最后一次登录IP');
$table->timeTz('last_login')->comment('最后一次登录时间');
$table->timestamps();
});
}
/**
- 回滚数据库迁移
-
- @return void
*/
public function down()
{
//
Schema::drop('users');
}
}
要创建一张新的数据表,可以使用 Schema facade 的 create 方法。create 方法接收两个参数:第一个参数为数据表的名称,第二个参数为一个 闭包 ,此闭包会接收一个用于定义新数据表的 Blueprint 对象
你可以方便地使用 hasTable 和 hasColumn 方法来检查数据表或字段是否存在:
PHP;">
if (Schema::hasTable('users')) {
//
}
if (Schema::hasColumn('users','email')) {
//
}
如果你想要在一个非默认的数据库连接中进行数据库结构操作,可以使用 connection 方法:
create('users',function (Blueprint $table) {
$table->increments('id');
});
你可以在数据库结构构造器上设置 engine 属性来设置数据表的存储引擎:
engine = 'InnoDB';
$table->increments('id');
});
重命名与删除数据表
PHP;">
Schema::rename($from,$to);//
重命名
//删除已存在的数据表
Schema::drop('users');
Schema::dropIfExists('users');
创建字段
string('email');
});
描述 |
bigIncrements('id');bigInteger('votes');binary('data');boolean('confirmed');char('name',4);date('created_at');dateTime('created_at');dateTimeTz('created_at');decimal('amount',5,2);double('column',15,8);enum('choices',['foo','bar']);float('amount',8,2);increments('id');integer('votes');ipAddress('visitor');json('options');jsonb('options');longText('description');macAddress('device');mediumIncrements('id');mediumInteger('numbers');mediumText('description');morphs('taggable');nullableMorphs('taggable');nullableTimestamps();rememberToken();smallIncrements('id');smallInteger('votes');softDeletes();删除操作。string('email');string('name',100);text('description');time('sunrise');timeTz('sunrise');tinyInteger('numbers');timestamp('added_on');timestampTz('added_on');timestamps();timestampsTz();atandupdated_at(带时区) 字段,并允许为NULL。unsignedBigInteger('votes');unsignedInteger('votes');unsignedMediumInteger('votes');unsignedSmallInteger('votes');unsignedTinyInteger('votes');uuid('id');
字段修饰
string('email')->nullable();
});
Modifier
Description |
after('column')MysqL)comment('my comment')增加注释default($value)first()MysqL)nullable()storedAs($expression)生成字段 (仅限 MysqL)unsigned()virtualAs($expression)生成字段 (仅限 MysqL)
字段更新
string('phone',20)->change();
$table->string('username',60)->->nullable()->change();
});
renameColumn('from','to');
});
字段移除
dropColumn(['last_ip','last_login']);
});
在使用字段更新,重命名字段,字段移除之前,请务必在你的 composer.json文件require键名中添加< "doctrine/dbal": "^2.5">值。然后composer update进行更新或
创建索引
string('email')->unique();
Description |
primary('id');primary(['first','last']);unique('email');unique('state','my_index_name');自定义索引名称。unique(['first','last']);index('state');
开启和关闭外键约束
PHP;">
Schema::enableForeignKeyConstraints();
Schema::disableForeignKeyConstraints();
运行迁移
PHP artisan migrate
在线上环境强制执行迁移
PHP;">
PHP artisan migrate --force
回滚迁移
若要回滚最后一次迁移,则可以使用 rollback 命令。此命令是对上一次执行的「批量」迁移回滚,其中可能包括多个迁移文件:
PHP;">
PHP artisan migrate:rollback
在 rollback 命令后加上 step 参数,你可以限制回滚迁移的个数。例如,下面的命令将会回滚最后的 5 个迁移。
PHP;">
PHP artisan migrate:rollback --step=5
migrate:reset 命令可以回滚应用程序中的所有迁移:
PHP;">
PHP artisan migrate:reset
使用单个命令来执行回滚或迁移
migrate:refresh 命令不仅会回滚数据库的所有迁移还会接着运行 migrate 命令。所以此命令可以有效的重新创建整个数据库:
PHP;">
PHP artisan migrate:refresh
// 刷新
数据库结构并执行数据填充
PHP artisan migrate:refresh --seed
使用 refresh 命令并加上 step 参数,你也可以限制执行回滚和再迁移的个数。比如,下面的命令会回滚并再迁移最后的 5 个迁移:
PHP;">
PHP artisan migrate:refresh --step=5
在 Laravel 项目中,由于测试,有时候用 PHP artisan make:migration create_xxx_table 创建数据库迁移。如果把创建的迁移文件 database/migrations/2017_07_30_133748_create_xxx_table.PHP 文件给删除了,再次执行 PHP artisan make:migration create_xxx_table 会报错:
PHP):
Failed to open stream: No such file or directory
重新运行 composer update 又可以执行上面的命令了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/laravel/17055.html