| 123456789101112131415161718192021222324252627282930 | <?phpuse Illuminate\Support\Facades\Schema;use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;class AddActiveToProjects extends Migration{    /**     * Run the migrations.     *     * @return void     */    public function up()    {        Schema::table('projects', function (Blueprint $table) {            $table->tinyInteger('active')->after('name')->default(2)->comment('1是2否')->nullable();        });    }    /**     * Reverse the migrations.     *     * @return void     */    public function down()    {        //    }}
 |