openapi-generator-original/samples/schema/petstore/mysql/Model/OuterObjectWithEnumProperty.sql
Jiri Kuncar 8cb4741248
[go][client] Fix example value for non string enums (#8900)
* [go][client] Fix example value for non string enums

* regenerated samples
2021-03-08 18:11:50 +08:00

27 lines
598 B
SQL

--
-- OpenAPI Petstore.
-- Prepared SQL queries for 'OuterObjectWithEnumProperty' definition.
--
--
-- SELECT template for table `OuterObjectWithEnumProperty`
--
SELECT `value` FROM `OuterObjectWithEnumProperty` WHERE 1;
--
-- INSERT template for table `OuterObjectWithEnumProperty`
--
INSERT INTO `OuterObjectWithEnumProperty`(`value`) VALUES (?);
--
-- UPDATE template for table `OuterObjectWithEnumProperty`
--
UPDATE `OuterObjectWithEnumProperty` SET `value` = ? WHERE 1;
--
-- DELETE template for table `OuterObjectWithEnumProperty`
--
DELETE FROM `OuterObjectWithEnumProperty` WHERE 0;