You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use the customTypeTransform configuration option (added in #5), but it appears that the configuration option is not making it past bin/schemats.ts.
I've defined the configuration in a file and that looks something like this:
.describe('skipTables', 'tables to skip')
.describe('customTypes', 'Mapping of custom types for a table column')
+ .describe('customTypeTransform', 'Mapping of custom types for a database column type')
.describe('customHeader', 'Custom header to prefix the output file')
.help('h')
Please let me know if you need any additional information. Thank you for continuing to support this library!
The text was updated successfully, but these errors were encountered:
I'm trying to use the
customTypeTransform
configuration option (added in #5), but it appears that the configuration option is not making it pastbin/schemats.ts
.I've defined the configuration in a file and that looks something like this:
I think we need something like the following after this line in
bin/schema.ts
.customTypes: argv.customTypes, + customTypeTransform: argv.customTypeTransform, camelCase: argv.camelCase,
And maybe something like this in the
yargs
call..describe('skipTables', 'tables to skip') .describe('customTypes', 'Mapping of custom types for a table column') + .describe('customTypeTransform', 'Mapping of custom types for a database column type') .describe('customHeader', 'Custom header to prefix the output file') .help('h')
Please let me know if you need any additional information. Thank you for continuing to support this library!
The text was updated successfully, but these errors were encountered: