-
Notifications
You must be signed in to change notification settings - Fork 150
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
Create DDL syntax without the need of temp files and directories #67
base: current/for_cpan_index
Are you sure you want to change the base?
Conversation
…empfiles or directories.
…ss into sql_to_string Conflicts: lib/DBIx/Class/Storage/DBI.pm t/storage/deploy.t
|
I haven't read the code in depth but.. how does if differ from just calling ->deployment_statements? |
|
Valid point. From what I saw deployment_statements looks at the existence of generated files, I want the SQL generated on the fly regardless of files on disk. |
|
@waterkip You can always supply a Let us know what you think of the above (perhaps with an extra documentation addition). |
|
I'll have a look.. although the nonexistent dir is a bit of a (icky) workaround. |
4aaf6fd
to
b3f3814
Compare
11cec86
to
2a89732
Compare
1282683
to
4bfba4e
Compare
0824a0c
to
ca30d84
Compare
|
@waterkip You are quite right that |
|
@waterkip Apologies for the closure of this issue - github did a number on me due to how it operates wrt disappearing branches. The issue is still on the radar, and will be merged when the underlying piece falls in place (any moment now). Sorry about that. |
Hello, at work we needed to generate the SQL DDL based on the current schema, but without the hassle of temp files and directories. I've introduced create_ddl which does this.