Skip to content

Commit

Permalink
11
Browse files Browse the repository at this point in the history
  • Loading branch information
dengfuping committed Dec 30, 2024
1 parent f13e1d4 commit b0d6111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drizzle-kit/src/serializer/mysqlSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export const MySqlSquasher = {
},
squashFK: (fk: ForeignKey) => {
return `${fk.name};${fk.tableFrom};${fk.columnsFrom.join(',')};${fk.tableTo};${fk.columnsTo.join(',')};${
fk.onUpdate ?? ''
fk.onUpdate ?? ''
};${fk.onDelete ?? ''}`;
},
unsquashFK: (input: string): ForeignKey => {
Expand Down

0 comments on commit b0d6111

Please sign in to comment.