mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-30 21:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export class OldDateNoteEdit1697970083001 {
 | |
| 	name = "OldDateNoteEdit1697970083001";
 | |
| 
 | |
| 	async up(queryRunner) {
 | |
| 		await queryRunner.query(`ALTER TABLE "note_edit" ADD COLUMN "oldDate" TIMESTAMP WITH TIME ZONE`);
 | |
| 	}
 | |
| 
 | |
| 	async down(queryRunner) {
 | |
| 		await queryRunner.query(`ALTER TABLE "note_edit" DROP COLUMN "oldDate"`);
 | |
| 	}
 | |
| }
 |