[文档]
应用入门开发教程 - 数据库迁移文件
在数据库迁移目录增加数据库迁移文件,内容如下
文件路径:database/migrations/2021_01_12_000000_create_blog.php
increments('id');
$table->timestamps();
$table->string('title', 200)->nullable()->comment('标题');
$table->string('cover', 200)->nullable()->comment('封面');
$table->string('summary', 200)->nullable()->comment('摘...