I have just started working with Laravel and I was wondering if there was an equivalent of the allowMultiQueries connection string parameter that I would use in java.
Is there way to do multiple updates in the same call or do they have to be done in succession?
DB::update('DROP TABLE IF EXISTS tablename; CREATE TABLE tablename(...);');
instead of
DB::update('DROP TABLE IF EXISTS tablename;');
DB::update('CREATE TABLE tablename(...);');