Hi all
Currently the cli generates files containing nothing but a comment:
diesel migration generate create_reports_table --format sql
Is there a plan for generating the actual sql?
Maybe just in simple cases?
Best,
Stefan
Hi all
Currently the cli generates files containing nothing but a comment:
diesel migration generate create_reports_table --format sql
Is there a plan for generating the actual sql?
Maybe just in simple cases?
Best,
Stefan
It’s expected behavior that diesel migration generate
creates an empty file. Those are just templates for the user to be filled with the actual migration SQL.
There is conceptually no way to generate those from something. Because there is no other source of information in this case. Where would we get the required information from?