(t *testing.T, migrations []string)
| 23 | var cache = poolcache.New() |
| 24 | |
| 25 | func PostgreSQL(t *testing.T, migrations []string) string { |
| 26 | return postgreSQL(t, migrations, true) |
| 27 | } |
| 28 | |
| 29 | func ReadOnlyPostgreSQL(t *testing.T, migrations []string) string { |
| 30 | return postgreSQL(t, migrations, false) |