AddAbTestingToDvsPageVersions::up PHP Method

up() public method

Run the migrations.
public up ( ) : void
return void
    public function up()
    {
        Schema::table('dvs_page_versions', function ($table) {
            $table->integer('ab_testing_amount')->after('ends_at')->default(0);
        });
    }
AddAbTestingToDvsPageVersions