@strapi/database 4.3.7 → 4.3.8

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.
@@ -316,7 +316,7 @@ const createHelpers = (db) => {
316
316
  debug(`Creating column ${addedColumn.name}`);
317
317
 
318
318
  if (addedColumn.type === 'increments' && !db.dialect.canAddIncrements()) {
319
- tableBuilder.integer(addedColumn.name).unsigned().notNullable();
319
+ tableBuilder.integer(addedColumn.name).unsigned();
320
320
  tableBuilder.primary(addedColumn.name);
321
321
  } else {
322
322
  createColumn(tableBuilder, addedColumn);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/database",
3
- "version": "4.3.7",
3
+ "version": "4.3.8",
4
4
  "description": "Strapi's database layer",
5
5
  "homepage": "https://strapi.io",
6
6
  "bugs": {
@@ -42,5 +42,5 @@
42
42
  "node": ">=14.19.1 <=16.x.x",
43
43
  "npm": ">=6.0.0"
44
44
  },
45
- "gitHead": "73f523b98322cea8992c72977b94a73a624d2e79"
45
+ "gitHead": "c44f21d5ba95d3f2fbba239cf241081dddd54dd7"
46
46
  }