Román Via-Dufresne Saus
Results
2
comments of
Román Via-Dufresne Saus
I do not know if I should be posting this here or opening a new issue, but I have found a bug with unsigned tinyints. The migration file is generated...
```dart Future loadEnvs(List envs, {Map merge = const {}}) async { if (envs.isEmpty) return; if (envs.length == 1) return dotenv.load(fileName: envs[0], mergeWith: merge); final de = DotEnv(); await de.load(fileName: envs[0],...