AddExtrasOrderOnUserProfileCustomization::up PHP Method

up() public method

Run the migrations.
public up ( ) : void
return void
    public function up()
    {
        Schema::table('user_profile_customizations', function ($table) {
            $table->string('extras_order')->nullable();
        });
    }
AddExtrasOrderOnUserProfileCustomization