Is this the correct way to use this method? Can't find documentation ```db .insert(schema.item) .values({ id: message.data.id, //primary key itemStatus: "new" }) .onDuplicateKeyUpdate({ set: { itemStatus: "old" }, });```