Merge pull request #166342 from SuperSandro2000/go-migrate

This commit is contained in:
Sandro 2022-04-10 03:23:38 +02:00 committed by GitHub
commit 61fda44330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,11 +15,13 @@ buildGoModule rec {
subPackages = [ "cmd/migrate" ];
tags = [ "postgres" "mysql" "redshift" "cassandra" "spanner" "cockroachdb" "clickhouse" "mongodb" "sqlserver" "firebird" "neo4j" "pgx" ];
meta = with lib; {
homepage = "https://github.com/golang-migrate/migrate";
homepage = "https://github.com/golang-migrate/migrate";
description = "Database migrations. CLI and Golang library";
maintainers = with maintainers; [ offline ];
license = licenses.mit;
license = licenses.mit;
mainProgram = "migrate";
};
}