add a script to migrate from dirtyDB to MYSQL thanks to http://blog.codeborne.com

pull/1091/merge
John McLear 2012-10-25 09:40:33 -07:00
parent 344ba31c92
commit ff2e7ead09
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
var dirty = require("../src/node_modules/ueberDB/node_modules/dirty")('var/dirty.db');
var db = require("../src/node/db/DB");
db.init(function() {
db = db.db;
dirty.on("load", function() {
dirty.forEach(function(key, value) {
db.set(key, value);
});
});
});