改进 progress 表结构

This commit is contained in:
iVampireSP.com 2023-01-19 02:22:35 +08:00
parent 2c0c4d3cd9
commit e9464234e2
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -0,0 +1,40 @@
<?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(): void
{
// 坏,为什么得这么写
Schema::table('tasks', function (Blueprint $table) {
$table->dropColumn('progress');
});
Schema::table('tasks', function (Blueprint $table) {
$table->unsignedTinyInteger('progress')->nullable()->after('title');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
Schema::table('tasks', function (Blueprint $table) {
$table->dropColumn('progress');
});
Schema::table('tasks', function (Blueprint $table) {
$table->integer('progress')->after('title');
});
}
};