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
518 B
SQL
27 lines
518 B
SQL
--
|
|
-- OpenAPI Petstore.
|
|
-- Prepared SQL queries for 'OuterEnumDefaultValue' definition.
|
|
--
|
|
|
|
|
|
--
|
|
-- SELECT template for table `OuterEnumDefaultValue`
|
|
--
|
|
SELECT FROM `OuterEnumDefaultValue` WHERE 1;
|
|
|
|
--
|
|
-- INSERT template for table `OuterEnumDefaultValue`
|
|
--
|
|
INSERT INTO `OuterEnumDefaultValue`() VALUES ();
|
|
|
|
--
|
|
-- UPDATE template for table `OuterEnumDefaultValue`
|
|
--
|
|
UPDATE `OuterEnumDefaultValue` SET WHERE 1;
|
|
|
|
--
|
|
-- DELETE template for table `OuterEnumDefaultValue`
|
|
--
|
|
DELETE FROM `OuterEnumDefaultValue` WHERE 0;
|
|
|