cesar omar
cesar omar
Migrations are not working after the first time migrations id property is BIGINT this returns migration.match(/^(\d+)/)[0]; a string so this appliedMigrationIds.indexOf(id) is equals -1 ![Screen Shot 2019-06-05 at 1 14...
__migrations__ id property is BIGINT this returns `migration.match(/^(\d+)/)[0];` a string so this appliedMigrationIds.indexOf(id) fails
Hello, ``` js var localDB = new PouchDB("test"); var remoteDB = new PouchDB("http://localhost:5984/test"); PouchDB.plugin(geopouch); localDB.sync(remoteDB,{live: true}) //I comment this line after 1st request //localDB.put({ _id: '_design/foo', spatial: { bar: function...