File: /www/wwwroot/www.ankua.asia/database/migrations/2023_09_07_094009_add_page_image.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
if (Schema::hasColumn('pages', 'image')) {
return;
}
Schema::table('pages', function (Blueprint $table) {
$table->string('image')->comment('封面图片')->default('')->after('page_category_id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};