AddGroupOrdering::down PHP Method

down() public method

Reverse the migrations.
public down ( )
    public function down()
    {
        Schema::table('groups', function (Blueprint $table) {
            $table->dropColumn('order');
        });
    }
AddGroupOrdering