laravel 模型迁移文件常规字段设计
Posted 养猪至富
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel 模型迁移文件常规字段设计相关的知识,希望对你有一定的参考价值。
laravel 模型迁移文件常规字段设计
# 迁移文件代码
Schema::create(‘表名‘, function (Blueprint $table) {
// 主键
$table->bigIncrements(‘id‘);
$table->unsignedInteger(‘pid‘)->default(0)->comment(‘上级ID‘);
$table->string(‘field_name‘,50)->default(‘‘)->comment(‘字段名‘);
$table->string(‘name‘,50)->default(‘‘)->comment(‘属性名称‘);
$table->string(‘icon‘,200)->default(‘‘)->comment(‘图标‘);
$table->timestamps();
// 软删除
$table->softDeletes();
});
以上是关于laravel 模型迁移文件常规字段设计的主要内容,如果未能解决你的问题,请参考以下文章