mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-27 03:24:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			483 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			483 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {MigrationInterface, QueryRunner} from "typeorm";
 | |
| 
 | |
| export class userLang1613181457597 implements MigrationInterface {
 | |
|     name = 'userLang1613181457597'
 | |
| 
 | |
|     public async up(queryRunner: QueryRunner): Promise<void> {
 | |
|         await queryRunner.query(`ALTER TABLE "user_profile" ADD "lang" character varying(32)`);
 | |
|     }
 | |
| 
 | |
|     public async down(queryRunner: QueryRunner): Promise<void> {
 | |
|         await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "lang"`);
 | |
|     }
 | |
| 
 | |
| }
 |