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