extract-mysql-schema 0.7.7 → 0.8.0

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/index.js +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -324,8 +324,9 @@ create index ${idx['INDEX_NAME']}
324
324
  if(paramsDefinition) paramsDefinition=`\n\t ${paramsDefinition}\n`;
325
325
 
326
326
  definition = `
327
- DELIMITER //
327
+
328
328
  DROP PROCEDURE IF EXISTS ${name};
329
+ DELIMITER //
329
330
  CREATE PROCEDURE ${name}(${paramsDefinition})
330
331
  ${definition};
331
332
  //
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "extract-mysql-schema",
3
- "version": "0.7.7",
3
+ "version": "0.8.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": "./run.js",