typeorm 0.3.9 → 0.3.10-dev.773a4fe

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.
File without changes
File without changes
@@ -1190,6 +1190,8 @@ export class AbstractSqliteQueryRunner extends BaseQueryRunner {
1190
1190
  constraint += ` ON DELETE ${fk.onDelete}`;
1191
1191
  if (fk.onUpdate)
1192
1192
  constraint += ` ON UPDATE ${fk.onUpdate}`;
1193
+ if (fk.deferrable)
1194
+ constraint += ` DEFERRABLE ${fk.deferrable}`;
1193
1195
  return constraint;
1194
1196
  })
1195
1197
  .join(", ");