serverpreconfigured 1.0.0 → 1.0.1

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.
@@ -11,7 +11,7 @@ class User extends sequelize_1.Model {
11
11
  password_hash: sequelize_2.DataTypes.STRING,
12
12
  }, {
13
13
  sequelize: sequelize,
14
- tableName: 'users',
14
+ tableName: 'spc_users',
15
15
  });
16
16
  }
17
17
  }
@@ -3,7 +3,7 @@
3
3
  module.exports = {
4
4
  async up (queryInterface, Sequelize) {
5
5
 
6
- return await queryInterface.createTable('users',
6
+ return await queryInterface.createTable('spc_users',
7
7
  { id: {
8
8
  type:Sequelize.INTEGER,
9
9
  primaryKey:true,
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "serverpreconfigured",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "\"Pre-configured server with authentication system and database integration\"",
5
5
  "main": "dist/server.js",
6
+ "keywords": ["server","pre configured","database","authentication"],
6
7
  "type": "commonjs",
7
8
  "scripts": {
8
9
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -11,7 +11,7 @@ export class User extends Model{
11
11
  },
12
12
  {
13
13
  sequelize:sequelize,
14
- tableName: 'users',
14
+ tableName: 'spc_users',
15
15
  }
16
16
  );
17
17
  }