AddViewToDvsPageVersions::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->string('view')->after('name')->nullable();
        });
    }
AddViewToDvsPageVersions