-
Notifications
You must be signed in to change notification settings - Fork 872
Export models to a different package #835
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
We just tried this out at our company, for context we are using go-migrate so we have a single folder with all of our database migrations. Without a feature like this the, otherwise excellent sqlc, isn't a viable option for us. As it stands (unless I've missed some configuration?) each generated package has a Having an option to decide where to generate the models file, and read from it on the subsequent generated packages OR being able to remove unused models would be a much needed feature. I see this has been left untouched since 2020, is there anything I can do to help speed this along? |
+1 |
Still waiting for this at the end of 2024 😊 |
Hi! Great work on this project!
I was wondering if it's currently possible to export Go model structs to a different folder package.
I think this could be a good feature for anyone who would like to make their code independent of the database backend but still use the automatically generated models.
For example:
This way you could e.g. also have a mongodb provider that uses these models, but without depending on the
postgres
package. I'm sure you'd agree that it would be odd for mongo to usepostgres.User
as a type.Is this something that's possible to do? If not, would you possibly accept a PR that adds support for it? Or it it something you're not planning on supporting for now?
Thanks
The text was updated successfully, but these errors were encountered: