2217a3c549
* chore: cacheRemoteFilesのデフォルト値をfalseに * proxyRemoteFiles to default * update ja-JP.yml * update ja-JP.yml * youCanCleanRemoteFilesCache * changelog --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
11 lines
397 B
JavaScript
11 lines
397 B
JavaScript
export class ChangeCacheRemoteFilesDefault1690417561186 {
|
|
name = 'ChangeCacheRemoteFilesDefault1690417561186'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "meta" ALTER COLUMN "cacheRemoteFiles" SET DEFAULT false`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "meta" ALTER COLUMN "cacheRemoteFiles" SET DEFAULT true`);
|
|
}
|
|
}
|