update lang length

This commit is contained in:
TheBeastLT
2021-09-17 13:36:25 +02:00
committed by TheBeastLT
parent a1beeba657
commit 53b03aa1eb
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ const Torrent = database.define('torrent',
uploadDate: { type: Sequelize.DATE, allowNull: false },
seeders: { type: Sequelize.SMALLINT },
trackers: { type: Sequelize.STRING(4096) },
languages: { type: Sequelize.STRING(256) },
languages: { type: Sequelize.STRING(4096) },
resolution: { type: Sequelize.STRING(16) }
}
);