ztechno_core 0.0.25 → 0.0.26

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.
@@ -25,7 +25,7 @@ class ZUserService {
25
25
  async createTable() {
26
26
  await this.sqlService.query(`
27
27
  CREATE TABLE \`${this.tableName}\` (
28
- \`id\` int(10) unsigned zerofill NOT NULL,
28
+ \`id\` int(10) unsigned NOT NULL AUTO_INCREMENT,
29
29
  \`name\` varchar(64) NOT NULL,
30
30
  \`role\` varchar(64) DEFAULT NULL,
31
31
  \`pass\` varchar(512) NOT NULL,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ztechno_core",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "Core files for ztechno framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",