Skip to content

Commit

Permalink
fix(schemas): resolve duplicates of init account center alter
Browse files Browse the repository at this point in the history
  • Loading branch information
wangsijie committed Nov 20, 2024
1 parent 80ae0bb commit dfeb70d
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ import type { AlterationScript } from '../lib/types/alteration.js';

const alteration: AlterationScript = {
up: async (pool) => {
// Delete the default account center if it exists
const { rowCount } = await pool.query(sql`
delete from account_centers where id = 'default';
`);

console.log(`Deleted ${rowCount} default account center`);

// Process in chunks of 1000 tenants
const batchSize = 1000;
// eslint-disable-next-line @silverhand/fp/no-let
Expand All @@ -26,7 +33,7 @@ const alteration: AlterationScript = {
// eslint-disable-next-line no-await-in-loop
await pool.query(sql`
insert into account_centers (tenant_id, id)
values ${sql.join(values, sql`, `)};
values ${sql.join(values, sql`, `)}
`);

// eslint-disable-next-line @silverhand/fp/no-mutation
Expand Down

0 comments on commit dfeb70d

Please sign in to comment.