MModStartinit
1e1f174c创建于 2022年5月28日历史提交
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class ModifyDataDriver extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('data', function (Blueprint $table) {

            $table->string('driver', 16)->nullable()->comment('大类');
            $table->string('domain', 100)->nullable()->comment('域名');

        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
    }
}