masterrecord 0.0.28 → 0.0.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Masterrecord.js +2 -2
  2. package/package.json +2 -2
package/Masterrecord.js CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  // https://github.com/kriasoft/node-sqlite
3
3
  // https://www.learnentityframeworkcore.com/dbset/deleting-data
4
- // version 1.0.16
4
+ // version 1.0.19
5
5
 
6
6
  var modelBuilder = require('./Entity/EntityModelBuilder');
7
7
  var query = require('masterrecord/QueryLanguage/queryMethods');
@@ -42,8 +42,8 @@ class Context {
42
42
  */
43
43
  __SQLiteInit(env, sqlName){
44
44
  try{
45
+ console.log("===========+++++++++++++++")
45
46
  const sqlite3 = require(sqlName);
46
- console.log("sdsdsds", env)
47
47
  let DBAddress = env.completeConnection;
48
48
  var db = new sqlite3(DBAddress, env);
49
49
  db.__name = sqlName;
package/package.json CHANGED
@@ -6,14 +6,14 @@
6
6
  "glob" : "^8.0.3",
7
7
  "deep-object-diff" : "^1.1.7"
8
8
  },
9
- "version": "0.0.28",
9
+ "version": "0.0.29",
10
10
  "description": "An Object-relational mapping for the Master framework. Master Record connects classes to relational database tables to establish a database with almost zero-configuration ",
11
11
  "homepage": "https://github.com/Tailor/MasterRecord#readme",
12
12
  "repository": {
13
13
  "type": "git",
14
14
  "url": "git+https://github.com/Tailor/Masterrecord.git"
15
15
  },
16
- "main": "./migrations/cli.js",
16
+ "main": "MasterRecord.js",
17
17
  "scripts": {
18
18
  "test": "echo \"Error: no test specified\" && exit 1"
19
19
  },