AddDeploymentReason::up PHP Method

up() public method

Run the migrations.
public up ( )
    public function up()
    {
        Schema::table('deployments', function (Blueprint $table) {
            $table->text('reason')->nullable();
        });
    }
AddDeploymentReason