Compare commits

..

No commits in common. "b58d9a3056e7e1e04b3240ec43b67b376d031d23" and "db3940f3545c40c8c9b8954a839d71b7eb4162aa" have entirely different histories.

3 changed files with 2 additions and 13 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "misskey", "name": "misskey",
"version": "12.110.1+birb3-2", "version": "12.110.1+birb3-1",
"codename": "indigo", "codename": "indigo",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -1,11 +0,0 @@
export class largeFile1653167275806 {
name = 'largeFile1653167275806'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "drive_file" ALTER COLUMN size TYPE bigint`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "drive_file" ALTER COLUMN size TYPE integer`);
}
}

View File

@ -56,7 +56,7 @@ export class DriveFile {
}) })
public type: string; public type: string;
@Column('bigint', { @Column('integer', {
comment: 'The file size (bytes) of the DriveFile.', comment: 'The file size (bytes) of the DriveFile.',
}) })
public size: number; public size: number;