forked from loafle/openapi-generator-original
handle composed schemas in InlineModelResolver (#2112)
* handle composed schemas in InlineModelResolver * fix unit test -> TestUtils.parseSpec * update samples * fix samples * update samples * update samples * add new files
This commit is contained in:
committed by
William Cheng
parent
7eb2be9c99
commit
ee43cc1520
@@ -165,6 +165,14 @@ CREATE TABLE IF NOT EXISTS `Cat` (
|
||||
`declawed` TINYINT(1) DEFAULT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `Cat_allOf` generated from model 'CatUnderscoreallOf'
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `Cat_allOf` (
|
||||
`declawed` TINYINT(1) DEFAULT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `Category` generated from model 'Category'
|
||||
--
|
||||
@@ -201,6 +209,14 @@ CREATE TABLE IF NOT EXISTS `Dog` (
|
||||
`breed` TEXT DEFAULT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `Dog_allOf` generated from model 'DogUnderscoreallOf'
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `Dog_allOf` (
|
||||
`breed` TEXT DEFAULT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `EnumArrays` generated from model 'EnumArrays'
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user