killbill-memoizeit

Fix type in sql template query

2/6/2014 5:15:00 PM

Details

diff --git a/payment/src/main/resources/com/ning/billing/payment/dao/PaymentMethodSqlDao.sql.stg b/payment/src/main/resources/com/ning/billing/payment/dao/PaymentMethodSqlDao.sql.stg
index 1a55de0..1096c6a 100644
--- a/payment/src/main/resources/com/ning/billing/payment/dao/PaymentMethodSqlDao.sql.stg
+++ b/payment/src/main/resources/com/ning/billing/payment/dao/PaymentMethodSqlDao.sql.stg
@@ -42,9 +42,9 @@ where  id = :id
 unmarkPaymentMethodAsDeleted(id) ::= <<
 update <tableName()>
 set is_active = 1
-where  id = :id
 , updated_by = :updatedBy
 , updated_date = :createdDate
+where  id = :id
 <AND_CHECK_TENANT()>
 ;
 >>