我创建了一个迁移并运行它。它说它工作正常,但什么也没发生。我认为它甚至没有连接到我的数据库。
我的迁移文件:
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.json
I put"database" : "bad-db"
和迁移的输出是完全相同的。完成后,找不到 bad-db.sqlite 文件。