mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			556 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			556 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {MigrationInterface, QueryRunner} from "typeorm";
 | 
						|
 | 
						|
export class objectStorageSetPublicRead1597230137744 implements MigrationInterface {
 | 
						|
    name = 'objectStorageSetPublicRead1597230137744'
 | 
						|
 | 
						|
    public async up(queryRunner: QueryRunner): Promise<void> {
 | 
						|
        await queryRunner.query(`ALTER TABLE "meta" ADD "objectStorageSetPublicRead" boolean NOT NULL DEFAULT false`);
 | 
						|
    }
 | 
						|
 | 
						|
    public async down(queryRunner: QueryRunner): Promise<void> {
 | 
						|
        await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "objectStorageSetPublicRead"`);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |