有时我看到我的数据库是空的,但我没有删除任何内容。
我正在使用带有MongoDB的Sails,我不知道为什么会这样。
答案 0 :(得分:0)
它真的依赖于./config/models.js文件。
module.exports.models = {
/***************************************************************************
* *
* Your app's default connection. i.e. the name of one of your app's *
* connections (see `config/connections.js`) *
* *
***************************************************************************/
//connection: 'localMysqlServer',
/***************************************************************************
* *
* How and whether Sails will attempt to automatically rebuild the *
* tables/collections/etc. in your schema. *
* *
* See http://sailsjs.org/#/documentation/concepts/ORM/model-settings.html *
* *
***************************************************************************/
migrate: 'alter',
schema : true,
autoPK: true,
autoCreatedAt: true,
autoUpdatedAt: true
};
迁移密钥非常重要,请确保在生产中设置为“安全”,然后不修改数据库的数据。