mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			719 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			719 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {MigrationInterface, QueryRunner} from "typeorm";
 | 
						|
 | 
						|
export class userLastActiveDate1618637372000 implements MigrationInterface {
 | 
						|
    name = 'userLastActiveDate1618637372000'
 | 
						|
 | 
						|
    public async up(queryRunner: QueryRunner): Promise<void> {
 | 
						|
        await queryRunner.query(`ALTER TABLE "user" ADD "lastActiveDate" TIMESTAMP WITH TIME ZONE DEFAULT NULL`);
 | 
						|
        await queryRunner.query(`CREATE INDEX "IDX_seoignmeoprigmkpodgrjmkpormg" ON "user" ("lastActiveDate") `);
 | 
						|
    }
 | 
						|
 | 
						|
    public async down(queryRunner: QueryRunner): Promise<void> {
 | 
						|
        await queryRunner.query(`DROP INDEX "IDX_seoignmeoprigmkpodgrjmkpormg"`);
 | 
						|
        await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "lastActiveDate"`);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |