Skip to content

Instantly share code, notes, and snippets.

@SodaDev
Created February 2, 2021 22:56
Show Gist options
  • Save SodaDev/8c0f4cdb914adcaa36206bd9c245ca9c to your computer and use it in GitHub Desktop.
Save SodaDev/8c0f4cdb914adcaa36206bd9c245ca9c to your computer and use it in GitHub Desktop.
START TRANSACTION;
INSERT INTO flights.routes (airportFrom, airportTo, connectingAirport, newRoute, seasonalRoute, operator, `group`, tags, similarArrivalAirportCodes, carrierCode) VALUES ('FOO', 'ROLLBACK_1', null, false, false, 'RYANAIR', 'CITY', '', '', 'FR');
INSERT INTO flights.routes (airportFrom, airportTo, connectingAirport, newRoute, seasonalRoute, operator, `group`, tags, similarArrivalAirportCodes, carrierCode) VALUES ('FOO', 'ROLLBACK_2', null, false, false, 'RYANAIR', 'CITY', '', '', 'FR');
INSERT INTO flights.routes (airportFrom, airportTo, connectingAirport, newRoute, seasonalRoute, operator, `group`, tags, similarArrivalAirportCodes, carrierCode) VALUES ('FOO', 'ROLLBACK_3', null, false, false, 'RYANAIR', 'CITY', '', '', 'FR');
ROLLBACK;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment