AddNotifyFailureOnlyFlag::up PHP Method

up() public method

Run the migrations.
public up ( )
    public function up()
    {
        Schema::table('notifications', function (Blueprint $table) {
            $table->boolean('failure_only')->default(false);
        });
    }
AddNotifyFailureOnlyFlag