move event.locations to more unique event.online_locations, various fixes on insertion workflow, improved locale messages

This commit is contained in:
sedum
2023-02-22 03:11:58 +01:00
parent 3ca86b9a3b
commit cff608c06f
11 changed files with 105 additions and 102 deletions

View File

@@ -10,7 +10,7 @@ module.exports = {
*/
return Promise.all(
[
await queryInterface.addColumn('events', 'locations', { type: Sequelize.JSON }),
await queryInterface.addColumn('events', 'online_locations', { type: Sequelize.JSON }),
])
},
@@ -23,7 +23,7 @@ module.exports = {
*/
return Promise.all(
[
await queryInterface.removeColumn('events', 'locations'),
await queryInterface.removeColumn('events', 'online_locations'),
])
}
};