2022_06_16_172936_create_font_table.php
731 Bytes
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateFontTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('font', function (Blueprint $table) {
$table->increments('id');
$table->string('name')->default('')->comment('名称标识');
$table->string('file')->default('')->comment('文件地址');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('font');
}
}