![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/lavocat.quebec/public_html/scripts/ |
const { PrismaClient } = require('@prisma/client');
const prisma = new PrismaClient();
const BUSINESS_ID = 'cmcqfih0g0001vjoolt160sup';
const USER_IDS = [
'cmcpzyaw30004vjz045cducwi', // Alain Arsenault
'cmcqfhsqx0001vjhc8ntsvvrc', // Audrey Labrecque
'cmcqfhtu60005vjhchckp6tz5', // David Chen
'cmcqfhv2d000bvjhc6q3z2yc0', // Isabella Rodriguez
'cmcpzyawf0006vjz02w4s3ila', // Justin Wee
'cmcqfhunh0009vjhck1pbja1u', // Marc-André Bouchard
'cmcqfhtcq0003vjhcm2e8yg8y', // Marie-Claude Tremblay
'cmcqfhu8f0007vjhcove5lw8r', // Sophie Dubois
'cmcqfhvgx000dvjhc2ls6th02', // Thomas Leblanc
];
async function main() {
for (const userId of USER_IDS) {
// Set profile public
await prisma.user.update({
where: { id: userId },
data: { isProfilePublic: true },
});
// Add as member if not already
await prisma.businessProfile.update({
where: { id: BUSINESS_ID },
data: {
members: {
connect: { id: userId },
},
},
});
}
console.log('All users added as members and set to public!');
}
main()
.catch(e => {
console.error(e);
process.exit(1);
})
.finally(() => prisma.$disconnect());