@ronin/compiler 0.11.1-leo-ron-1083-experimental-229 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -643,7 +643,7 @@ var getFieldStatement = (models, model, field) => {
643
643
  if (field.unique === true) statement += " UNIQUE";
644
644
  if (field.required === true) statement += " NOT NULL";
645
645
  if (typeof field.defaultValue !== "undefined")
646
- statement += ` DEFAULT ${field.defaultValue}`;
646
+ statement += ` DEFAULT ${typeof field.defaultValue === "string" ? `'${field.defaultValue}'` : field.defaultValue}`;
647
647
  if (field.collation) statement += ` COLLATE ${field.collation}`;
648
648
  if (field.increment === true) statement += " AUTOINCREMENT";
649
649
  if (typeof field.check !== "undefined") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronin/compiler",
3
- "version": "0.11.1-leo-ron-1083-experimental-229",
3
+ "version": "0.11.2",
4
4
  "type": "module",
5
5
  "description": "Compiles RONIN queries to SQL statements.",
6
6
  "publishConfig": {