New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

json-schema-table

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-schema-table - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

2

package.json
{
"name": "json-schema-table",
"version": "1.0.6",
"version": "1.0.7",
"description": "Creates and maintains a SQL table structure",

@@ -5,0 +5,0 @@ "homepage": "",

@@ -24,2 +24,3 @@ /* eslint-disable max-len */

dialect.propertyToDb = propertyToPostgres;
dialect.bigint = !!config.bigint;
}

@@ -489,2 +490,4 @@ return {

var column;
var integerType = this.bigint ? 'BIGINT' : 'INTEGER';
switch (property.type) {

@@ -495,3 +498,3 @@ case 'integer':

} else {
column = 'INTEGER';
column = integerType;
}

@@ -538,3 +541,3 @@ break;

} else {
column = 'INTEGER';
column = integerType;
}

@@ -541,0 +544,0 @@ break;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc