imageFilenames and imageFilename, backend integration tests, frontend tests, removed username references
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = {
|
||||
up: async (queryInterface, Sequelize) => {
|
||||
// Change image/photo URL fields from VARCHAR(255) to TEXT to support longer URLs
|
||||
await Promise.all([
|
||||
queryInterface.changeColumn("Users", "profileImage", {
|
||||
type: Sequelize.TEXT,
|
||||
allowNull: true,
|
||||
}),
|
||||
queryInterface.changeColumn("Messages", "imagePath", {
|
||||
type: Sequelize.TEXT,
|
||||
allowNull: true,
|
||||
}),
|
||||
queryInterface.changeColumn("ConditionChecks", "photos", {
|
||||
type: Sequelize.ARRAY(Sequelize.TEXT),
|
||||
defaultValue: [],
|
||||
}),
|
||||
]);
|
||||
},
|
||||
|
||||
down: async (queryInterface, Sequelize) => {
|
||||
// Revert to original VARCHAR(255) - note: this may fail if data exceeds 255 chars
|
||||
await Promise.all([
|
||||
queryInterface.changeColumn("Users", "profileImage", {
|
||||
type: Sequelize.STRING,
|
||||
allowNull: true,
|
||||
}),
|
||||
queryInterface.changeColumn("Messages", "imagePath", {
|
||||
type: Sequelize.STRING,
|
||||
allowNull: true,
|
||||
}),
|
||||
queryInterface.changeColumn("ConditionChecks", "photos", {
|
||||
type: Sequelize.ARRAY(Sequelize.STRING),
|
||||
defaultValue: [],
|
||||
}),
|
||||
]);
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user