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
} elseif (!empty($databaseServer['publicly_accessible']) && $output->confirm(sprintf('Would you like to create staging and production databases for your project on the "<comment>%s</comment>" database server?', $databaseServer['name']))) {
167
-
$databasePrefix = $output->askSlug('What database prefix would you like to use for this project?', $projectName);
168
165
}
169
166
170
-
return$environments->map(function (array$options, string$environment) use ($databasePrefix, $databaseServer) {
if (!empty($databaseServer['publicly_accessible']) && $output->confirm(sprintf('Would you like to create the staging and production databases for your project on the "<comment>%s</comment>" database server?', $databaseServer['name']))) {
if (empty($databaseServer['publicly_accessible']) || !$output->confirm(sprintf('Would you like to create staging and production databases for your project on the "<comment>%s</comment>" database server?', $databaseServer['name']))) {
182
+
return$environments->map(function (array$options) use ($databaseServer) {
0 commit comments