dbup icon indicating copy to clipboard operation
dbup copied to clipboard

php simple migration tool

Results 4 dbup issues
Sort by recently updated
recently updated
newest added

https://github.com/box-project/box2

status時に表示される日時が、applied内のタイムスタンプではなく、sql内のタイムスタンプになっている為、「クエリ実行日時」ではなく「クエリ作成日時」になっていました。 作成日時はsqlディレクトリ内をls -lする事で見られると思うので、下記の修正にてクエリの実行日時が表示されるようにしました。 余計な事とは思いますが、よろしければご反映下さい。 ``` diff --git a/src/Dbup/Application.php b/src/Dbup/Application.php index 349e1b7..82807ab 100644 --- a/src/Dbup/Application.php +++ b/src/Dbup/Application.php @@ -192,16 +192,17 @@ EOL; $isApplied = function($file) use ($appliedFiles){ foreach ($appliedFiles as $appliedFile)...

- https://github.com/brtriver/dbup/issues/12

This pull request makes dbup compatible with php 8.1 Also, phpcs, phpstan, and phpmd are now happy with the source code.