Allowing multiple print_schema #3715
forest1102
started this conversation in
Ideas
Replies: 1 comment
-
Thanks for writing this proposal. This feature is essentially a duplicate of #1728. We are happy to accept contributions there, but I personally do not plan to work on this feature soon. If you start working on this you need to keep in mind that this needs to be implemented in a backward compatible way. It's not clear from your proposal how that would be achieved, as |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Your project helps a lot.
One feature I want is splitting into multiple schema.rs.
For instance, making the following diesel.toml
Then, the
companies
schema info is written indb_company/src/schema.rs
, while theusers
schema info goes todb_user/src/schema.rs
.Current Behavior
print_schema field only allows only on schema info.
So, what I do right now is select one print_schema and comment out others like the following files.
Motivation
How to do
Beta Was this translation helpful? Give feedback.
All reactions