forked from loafle/openapi-generator-original
* 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
581 B
SQL
27 lines
581 B
SQL
--
|
|
-- OpenAPI Petstore.
|
|
-- Prepared SQL queries for 'OuterEnumIntegerDefaultValue' definition.
|
|
--
|
|
|
|
|
|
--
|
|
-- SELECT template for table `OuterEnumIntegerDefaultValue`
|
|
--
|
|
SELECT FROM `OuterEnumIntegerDefaultValue` WHERE 1;
|
|
|
|
--
|
|
-- INSERT template for table `OuterEnumIntegerDefaultValue`
|
|
--
|
|
INSERT INTO `OuterEnumIntegerDefaultValue`() VALUES ();
|
|
|
|
--
|
|
-- UPDATE template for table `OuterEnumIntegerDefaultValue`
|
|
--
|
|
UPDATE `OuterEnumIntegerDefaultValue` SET WHERE 1;
|
|
|
|
--
|
|
-- DELETE template for table `OuterEnumIntegerDefaultValue`
|
|
--
|
|
DELETE FROM `OuterEnumIntegerDefaultValue` WHERE 0;
|
|
|