Arif

Results 3 comments of Arif

This works for me in Windows with Postgres DB: ``` migrationsPath := fmt.Sprintf("file:%s", utils.GetEnv("MIGRATIONS_DIR")) //export MIGRATIONS_DIR="E:/path/to/migrationDir" migrateDburi := fmt.Sprintf("postgres://%s:%s@%s:%s/%s?sslmode=disable", user, password, host, port, dbname) m, err := migrate.New(migrationsPath, migrateDburi) ```

> Just FYI, you can run `sqlc` on Windows by installing [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) then using compiled Linux binary. Probably can add this to readme as temporary work around...

I think [this](https://github.com/FaridSafi/react-native-gifted-listview/issues/112) is your solution.