diff --git a/migrations/1712659673740_add-user-guid-indexes.js b/migrations/1712659673740_add-user-guid-indexes.js index c982333..8cbbd7b 100644 --- a/migrations/1712659673740_add-user-guid-indexes.js +++ b/migrations/1712659673740_add-user-guid-indexes.js @@ -6,23 +6,23 @@ exports.up = (pgm) => { // Adding indexes pgm.createIndex('completed_agegroup_entries', 'user_guid', { ifNotExists: true, - name: completed_agegroup_entries_user_guid_idx, + name: 'completed_agegroup_entries_user_guid_idx', }) pgm.createIndex('favourite_tasks', 'user_guid', { ifNotExists: true, - name: favourite_tasks_user_guid_idx, + name: 'favourite_tasks_user_guid_idx', }) pgm.createIndex('notifications', 'user_guid', { ifNotExists: true, - name: notifications_user_guid_idx, + name: 'notifications_user_guid_idx', }) pgm.createIndex('task_entries', 'user_guid', { ifNotExists: true, - name: task_entries_user_guid_idx, + name: 'task_entries_user_guid_idx', }) pgm.createIndex('task_group_entries', 'user_guid', { ifNotExists: true, - name: task_group_entries_user_guid_idx, + name: 'task_group_entries_user_guid_idx', }) }