mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 05:24:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			629 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			629 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| Object.defineProperty(exports, "__esModule", { value: true });
 | |
| class instancePinnedPages1605585339718 {
 | |
|     constructor() {
 | |
|         this.name = 'instancePinnedPages1605585339718';
 | |
|     }
 | |
|     async up(queryRunner) {
 | |
|         await queryRunner.query(`ALTER TABLE "meta" ADD "pinnedPages" character varying(512) array NOT NULL DEFAULT '{"/featured", "/channels", "/explore", "/pages", "/about-misskey"}'::varchar[]`);
 | |
|     }
 | |
|     async down(queryRunner) {
 | |
|         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "pinnedPages"`);
 | |
|     }
 | |
| }
 | |
| exports.instancePinnedPages1605585339718 = instancePinnedPages1605585339718;
 |