laraval migration 新增字段或者修改字段的方法

1.進入項目根目錄執行artisan命令生成migration文件,能夠指定--table和--path參數,會在對應目錄下生成migration文件。php

php artisan make:migration alter_table_his_decisions  --table=his_decisions --path=database/migrations/ca/

2.在migration文件中的up方法中新增或者修改字段spa

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('his_decisions', function (Blueprint $table) {
            $table->string('primary_refuse_reason')->default('')->comment('拒絕主緣由');
            $table->string('secondary_refuse_reason')->default('')->comment('拒絕子緣由');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('his_decisions', function (Blueprint $table) {
            $table->drop_column('primary_refuse_reason');
            $table->drop_column('secondary_refuse_reason');
        });
    }

3.執行artisan命令來使變動生效,能夠指定path參數到目錄級別code

php artisan migrate --path=database/migrations/ca/ 

ps:blog

一個很好用的參數來查看artisan命令能夠跟哪些參數,好比想知道遷移命令後接的參數ci

php artisan migrate --help
相關文章
相關標籤/搜索