ufutx.dma/database/migrations/2024_01_09_165918_change_table_video.php
2026-03-04 14:42:40 +08:00

33 lines
694 B
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()
{
Schema::table('video', function (Blueprint $table) {
$table->tinyInteger('type')->default(0)->comment('视频类型 0:竖屏 1:横屏')->after('img_url');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('video', function (Blueprint $table) {
$table->dropColumn('ip');
});
}
};