Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dont require migration dirs from github to run extenstion #323

Merged
merged 3 commits into from
Oct 19, 2023

Conversation

ronenlu
Copy link
Member

@ronenlu ronenlu commented Oct 19, 2023

repo without migration dir:
image

repo with migration dir:

Screen.Recording.2023-10-19.at.14.05.58.mov

prompt.go Outdated
Comment on lines 23 to 42
switch {
case i.DirPath == "" && len(dirs) == 0:
prompt := promptui.Prompt{
Label: "Enter the path of the migration directory in your repository",
Stdin: i.stdin,
}
if i.DirPath, err = prompt.Run(); err != nil {
return err
}
case i.DirPath == "" && len(dirs) > 0:
opts := append(dirs, "provide another path")
prompt := promptui.Select{
Label: "Choose migration directory",
Items: dirs,
Items: opts,
Stdin: i.stdin,
}
if _, i.DirPath, err = prompt.Run(); err != nil {
return err
}
prompt = promptui.Select{
Label: "Choose driver",
Items: []string{"mysql", "postgres", "mariadb", "sqlite"},
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can move that switch into the upper if since all cases require i.DirPath to be zero.

masseelch
masseelch previously approved these changes Oct 19, 2023
@ronenlu ronenlu merged commit 75c3dcd into master Oct 19, 2023
3 checks passed
@masseelch masseelch deleted the dirs_github branch October 19, 2023 13:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants