6

我创建了一个迁移并运行它。它说它工作正常,但什么也没发生。我认为它甚至没有连接到我的数据库。

我的迁移文件:

var util = require("util");
module.exports = {
up : function(migration, DataTypes, done) {
    
migration.createTable('nameOfTheNewTable', {
    attr1 : DataTypes.STRING,
    attr2 : DataTypes.INTEGER,
    attr3 : {
        type : DataTypes.BOOLEAN,
        defaultValue : false,
        allowNull : false
    }
}).success(
        function() {

            migration.describeTable('nameOfTheNewTable').success(
                    function(attributes) {
                        util.puts("nameOfTheNewTable Schema: "
                                + JSON.stringify(attributes));
                        done();
                    });

        });
},
down : function(migration, DataTypes, done) {
    // logic for reverting the changes
}
};

我的 Config.json:

{
  "development": {
    "username": "user",
    "password": "pw",
    "database": "my-db",
    "dialect" : "sqlite",
    "host": "localhost"
  }
}

命令:

./node_modules/sequelize/bin/sequelize --migrate --env development
Loaded configuration file "config/config.json".
Using environment "development".
Running migrations...
20130921234513-initial.js
nameOfTheNewTable Schema: {"attr1":{"type":"VARCHAR(255)","allowNull":true,"defaultValue":null},"attr2":{"type":"INTEGER","allowNull":true,"defaultValue":null},"attr3":{"type":"TINYINT(1)","allowNull":false,"defaultValue":false}}
Completed in 8ms

我可以一遍又一遍地运行它,输出总是一样的。我已经在我知道有现有表的数据库上尝试过它并尝试描述这些表,但仍然没有任何反应。

难道我做错了什么?

编辑:

我很确定我没有连接到数据库,但请尝试我可能无法使用迁移进行连接。我可以使用sqlite3 my-db.sqlite和运行命令进行连接,例如.tables查看我之前创建的表,但我无法终生获得使用迁移创建的“nameOfTheNewTable”表。(我也想在迁移中创建索引)。我尝试过使用“开发”,在config.json主机、数据库(my-db、../my-db、my-db.sqlite)等中的值。

这是一个很好的例子,在config.jsonI put"database" : "bad-db"和迁移的输出是完全相同的。完成后,找不到 bad-db.sqlite 文件。

4

2 回答 2

10

您需要在 config.json 中指定 'storage' 参数,以便 sequelize 知道将哪个文件用作 sqlite DB。

Sequelize 默认为 sqlite 使用内存存储,因此它正在迁移内存数据库,然后退出,有效地破坏了它刚刚迁移的数据库。

于 2013-11-10T01:05:54.560 回答
1

您很可能必须等待migration.createTable完成:

migration.createTable(/*your options*/).success(function() {  
    migration.describeTable('nameOfTheNewTable').success(function(attributes) {  
        util.puts("nameOfTheNewTable Schema: " + JSON.stringify(attributes));  
        done()  
    });
})
于 2013-09-25T06:39:56.367 回答