Özüm Eldoğan
Özüm Eldoğan
@q8tywolf and @sfratini thanks for the case and warning. I released a new major version of the pg-generator compatible with the latest Node, which is currently in the alpha stage....
You are doing ok. It's normal to have name collisions in some complex database structures. First try to use this option: `--relation-name-functions descriptive` If you still get naming collision you...
See example schema below:  `product` table has two foreign key columns: `vendor_id` and `alternative_vendor_id` `product` table has two foreign keys: `product_vendor` and `product_alternative_vendor` You should rename your **"foreign keys"**...
Yes, this is on purpose. If there is a conflict, nothing is generated. Otherwise, you would have corrupted models. Possible problems: - FKs of non-generated relations refers to non-existing relation....
You should write the actual schema name instead of ``. For example: ``` pgen example:sequelize6 -i public ``` In your second example, you * forgot to add a second dash,...
I was just looking for this. Could it be merged please?
Related to this, please support `extraArgs` and `extraFlags` properties, which returns all values not defined in `static flags` and `static args`. So I can forward extra arguments to other cli...
Hi @g-makarov, Below is an example for a use case: ```ts const a = { name: "Jane" surname: undefined } const hasValue = getByPath(a, 'surname') !== undefined; // false const...
MacOS Ventura 13.2 node v19.5.0 VSCode 1.75.0 nuxt-vscode 0.0.6 nuxi (global) 3.1.2 https://user-images.githubusercontent.com/1497060/217265137-1d5211e2-f4ec-4897-bce7-ddec4b4f3bb8.mov
@tiagosiebler, I will surely increase the version number. I will try to find a way to implement the generic type to the `sumbitNewOrder()`. It is tricky. > MARKET and LIMIT...