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
Copy file name to clipboardExpand all lines: src/Commands/Traits/HandlesPotentialBreakingChangesWarnings.php
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -28,28 +28,31 @@ public function warnAboutNewPositionColumns(): void
28
28
29
29
$this->warn("⚠️ Twill 3.5.0 introduced 2 new database migrations to fix a bug with the medias and files fields position management, make sure to add them to your project.\n");
30
30
31
-
if ($this->ask('Would you like to add the migration to your project?')) {
31
+
if ($this->confirm('Would you like to add the migration to your project?')) {
0 commit comments