add option to print sql instead of committing the changes itself
This commit is contained in:
parent
bcbe093806
commit
5f57679bb3
|
@ -147,6 +147,14 @@ async function main() {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if (process.argv?.[2] === "sql") {
|
||||||
|
log(`ALTER SEQUENCE "PaletteColor_id_seq" RESTART WITH 1;`);
|
||||||
|
for (const { name, hex } of palette) {
|
||||||
|
log(
|
||||||
|
`INSERT INTO "PaletteColor" (name, hex) VALUES ('${name}', '${hex}');`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
for (const { name, hex } of palette) {
|
for (const { name, hex } of palette) {
|
||||||
log("Ensuring color", { name, hex });
|
log("Ensuring color", { name, hex });
|
||||||
await prisma.paletteColor.upsert({
|
await prisma.paletteColor.upsert({
|
||||||
|
@ -158,6 +166,7 @@ async function main() {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in New Issue