cockroachdb / cockroachdb/sequelize-cockroachdb

Running migration with umzug has some issues

Abierto
#19 6 comentarios 0 reacciones 1 asignado Reclamado por @benesch Ver en GitHub
Lenguaje dominante
JavaScript
Estrellas
55
Forks
18
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

When running the following migration

```js
'use strict';

module.exports = {
up: (query, types) => {
query.addColumn('Users', 'lastName', types.STRING);
},
down: (query, types) => {
query.removeColumn('Users', 'lastName');
},
};
```
This error is thrown `SequelizeDatabaseError: database "public" does not exist`
the query that it attempted to ran was this:
```
Executing (default): ALTER TABLE "public"."Users" ADD COLUMN "lastName" VARCHAR(255);
```

After digging into the code a little bit I think i tracked this down to this line here in sequelize
https://github.com/sequelize/sequelize/blob/master/lib/dialects/abstract/query-generator.js#L26

You can see they call this function in the postgres query-generator dialect on this line
https://github.com/sequelize/sequelize/blob/master/lib/dialects/postgres/query-generator.js#L241

Versions:
Cockroachdb: CCL v1.1.0-rc.1 @ 2017/10/05 15:33:25 (go1.8.3)
sequelize-cockroachdb: 1.0.2
umzug: 2.0.1

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.