@axiosleo/orm-mysql 0.14.1 → 0.14.2

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.
package/bin/orm-mysql.js CHANGED
@@ -9,7 +9,7 @@ const app = new App({
9
9
  name: 'MySQL ORM CLI',
10
10
  desc: 'migrate, model, seed, etc.',
11
11
  bin: 'orm-mysql',
12
- version: '0.14.1',
12
+ version: '0.14.2',
13
13
  commands_dir: path.join(__dirname, '../commands'),
14
14
  });
15
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiosleo/orm-mysql",
3
- "version": "0.14.1",
3
+ "version": "0.14.2",
4
4
  "description": "MySQL ORM tool",
5
5
  "keywords": [
6
6
  "mysql",
package/src/builder.js CHANGED
@@ -749,7 +749,7 @@ class ManageSQLBuilder extends Builder {
749
749
  let str = `\`${options.name}\` ${type}`;
750
750
  if (typeof options.length !== 'undefined') {
751
751
  if (type === 'DECIMAL') {
752
- str += `(${options.precision || 10}, ${options.length || 6})`;
752
+ str += `(${options.precision || 10}, ${options.scale || options.length || 6})`;
753
753
  } else {
754
754
  str += `(${options.length})`;
755
755
  }
@@ -760,7 +760,7 @@ class ManageSQLBuilder extends Builder {
760
760
  } else if (type === 'TINYINT') {
761
761
  str += '(4)';
762
762
  } else if (type === 'DECIMAL') {
763
- str += `(${options.precision || 10}, ${options.length || 6})`;
763
+ str += `(${options.precision || 10}, ${options.scale || options.length || 6})`;
764
764
  }
765
765
  if (options.allowNull === false || options.primaryKey === true) {
766
766
  str += ' NOT NULL';
@@ -1,18 +0,0 @@
1
- version: '3'
2
- # Settings and configurations that are common for all containers
3
- services:
4
- mysql:
5
- image: 'mysql:8.0'
6
- container_name: "orm-feature-tests-mysql"
7
- command: mysqld --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
8
- environment:
9
- MYSQL_ROOT_PASSWORD: '3AQqZTfmww=Ftj'
10
- MYSQL_DATABASE: 'feature_tests'
11
- restart: 'always'
12
- ports:
13
- - "3306:3306"
14
- healthcheck:
15
- test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-p3AQqZTfmww=Ftj"]
16
- interval: 5s
17
- timeout: 3s
18
- retries: 10
@@ -1,5 +0,0 @@
1
- ignoredBuiltDependencies:
2
- - pre-commit
3
-
4
- onlyBuiltDependencies:
5
- - spawn-sync