You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will be useful for developers to have an ability to see changes before actual generation of migration file.
Usual workflow of development that includes schema changes now looks like this:
cycle:migrate
wait till file appear in host system filesystem (when using docker volume it takes 1-2 seconds to appear in file system and be indexed by phpstorm)
open file, check diff.
if something is missing - remove file, make entity file schema changes, go to p.1
My suggestion is to add some flag like --dry, which will not generate actual file, but just print the result to console, where you can immediately see the difference
php app.php cycle:migrate --dry
The text was updated successfully, but these errors were encountered:
It will be useful for developers to have an ability to see changes before actual generation of migration file.
Usual workflow of development that includes schema changes now looks like this:
My suggestion is to add some flag like
--dry
, which will not generate actual file, but just print the result to console, where you can immediately see the differenceThe text was updated successfully, but these errors were encountered: