d0800f7661
* client: remove unused file * refactor(client/my-actor-avatar): size from input Read size from component input instead of scss, to make it possible to use smaller avatar images when implemented. * implement avatar miniatures close #4560 * fix(test): max file size * fix(search-index): normalize res acc to avatarMini * refactor avatars to an array * client/search: resize channel avatar to 120 * refactor(client/videos): remove unused function * client(actor-avatar): set default size * fix tests and avatars full result When findOne is used only an array containting one avatar is returned. * update migration version and version notations * server/search: harmonize normalizing * Cleanup avatar miniature PR Co-authored-by: Chocobozzz <me@florianbigard.com>
62 lines
1.9 KiB
TypeScript
62 lines
1.9 KiB
TypeScript
import * as Sequelize from 'sequelize'
|
|
|
|
async function up (utils: {
|
|
transaction: Sequelize.Transaction
|
|
queryInterface: Sequelize.QueryInterface
|
|
sequelize: Sequelize.Sequelize
|
|
db: any
|
|
}): Promise<void> {
|
|
{
|
|
await utils.queryInterface.addColumn('actorImage', 'actorId', {
|
|
type: Sequelize.INTEGER,
|
|
defaultValue: null,
|
|
allowNull: true,
|
|
references: {
|
|
model: 'actor',
|
|
key: 'id'
|
|
},
|
|
onDelete: 'CASCADE'
|
|
}, { transaction: utils.transaction })
|
|
|
|
// Avatars
|
|
{
|
|
const query = `UPDATE "actorImage" SET "actorId" = (SELECT "id" FROM "actor" WHERE "actor"."avatarId" = "actorImage"."id") ` +
|
|
`WHERE "type" = 1`
|
|
await utils.sequelize.query(query, { type: Sequelize.QueryTypes.UPDATE, transaction: utils.transaction })
|
|
}
|
|
|
|
// Banners
|
|
{
|
|
const query = `UPDATE "actorImage" SET "actorId" = (SELECT "id" FROM "actor" WHERE "actor"."bannerId" = "actorImage"."id") ` +
|
|
`WHERE "type" = 2`
|
|
await utils.sequelize.query(query, { type: Sequelize.QueryTypes.UPDATE, transaction: utils.transaction })
|
|
}
|
|
|
|
// Remove orphans
|
|
{
|
|
const query = `DELETE FROM "actorImage" WHERE id NOT IN (` +
|
|
`SELECT "bannerId" FROM actor WHERE "bannerId" IS NOT NULL ` +
|
|
`UNION select "avatarId" FROM actor WHERE "avatarId" IS NOT NULL` +
|
|
`);`
|
|
|
|
await utils.sequelize.query(query, { type: Sequelize.QueryTypes.DELETE, transaction: utils.transaction })
|
|
}
|
|
|
|
await utils.queryInterface.changeColumn('actorImage', 'actorId', {
|
|
type: Sequelize.INTEGER,
|
|
allowNull: false
|
|
}, { transaction: utils.transaction })
|
|
|
|
await utils.queryInterface.removeColumn('actor', 'avatarId', { transaction: utils.transaction })
|
|
await utils.queryInterface.removeColumn('actor', 'bannerId', { transaction: utils.transaction })
|
|
}
|
|
}
|
|
|
|
function down () {
|
|
throw new Error('Not implemented.')
|
|
}
|
|
|
|
export {
|
|
up,
|
|
down
|
|
}
|