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