mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-13 13:10:53 +00:00
* migrate mysql samples to oas 3.0 * update apache2 to use oas3 spec * migrate graphql samples to use oas3 spec * move avro script under bin * update protobuf samples to use openapi3 spec * add new files
27 lines
584 B
SQL
27 lines
584 B
SQL
--
|
|
-- OpenAPI Petstore.
|
|
-- Prepared SQL queries for 'inline_object_5' definition.
|
|
--
|
|
|
|
|
|
--
|
|
-- SELECT template for table `inline_object_5`
|
|
--
|
|
SELECT `additionalMetadata`, `requiredFile` FROM `inline_object_5` WHERE 1;
|
|
|
|
--
|
|
-- INSERT template for table `inline_object_5`
|
|
--
|
|
INSERT INTO `inline_object_5`(`additionalMetadata`, `requiredFile`) VALUES (?, ?);
|
|
|
|
--
|
|
-- UPDATE template for table `inline_object_5`
|
|
--
|
|
UPDATE `inline_object_5` SET `additionalMetadata` = ?, `requiredFile` = ? WHERE 1;
|
|
|
|
--
|
|
-- DELETE template for table `inline_object_5`
|
|
--
|
|
DELETE FROM `inline_object_5` WHERE 0;
|
|
|