1
0
Fork 1
mirror of https://example.com synced 2024-11-23 07:16:38 +09:00
firefish/packages/backend/migration/1689957674000-firefish-repo.js

15 lines
385 B
JavaScript
Raw Normal View History

2023-07-22 18:54:24 +09:00
export class FirefishRepo1689957674000 {
name = "FirefishRepo1689957674000";
async up(queryRunner) {
await queryRunner.query(
2023-11-09 21:25:55 +09:00
`UPDATE meta SET "repositoryUrl" = 'https://git.joinfirefish.org/firefish/firefish'`,
2023-07-22 18:54:24 +09:00
);
await queryRunner.query(
`UPDATE meta SET "feedbackUrl" = 'https://git.joinfirefish.org/firefish/firefish/issues'`,
);
}
2023-09-24 14:54:38 +09:00
async down(queryRunner) {}
2023-07-22 18:54:24 +09:00
}