drizzle-kit 0.14.3 → 0.14.4
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -18252,7 +18252,7 @@ var SQLiteCreateTableConvertor = class extends Convertor {
|
|
|
18252
18252
|
statement += `FOREIGN KEY (${fromColumnsString}) REFERENCES ${tableTo}(${toColumnsString}) ${onUpdateStatement} ${onDeleteStatement}`.squashSpaces();
|
|
18253
18253
|
statement += ",";
|
|
18254
18254
|
}
|
|
18255
|
-
statement.trimChar(",");
|
|
18255
|
+
statement = statement.trimChar(",");
|
|
18256
18256
|
statement += `
|
|
18257
18257
|
`;
|
|
18258
18258
|
statement += `);`;
|