Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.62 KB | None | 0 0
  1. alter table cardProducts drop column commissionRate;
  2.  
  3. alter table cardProducts
  4.     add limits json null after description;
  5.  
  6. alter table cardProducts drop column minimalCommission;
  7.  
  8. alter table cardProducts drop column perTransactionLimit;
  9.  
  10. alter table cardProducts drop column dailyWithdrawalLimit;
  11.  
  12. alter table cardProducts drop column weeklyWithdrawalLimit;
  13.  
  14. alter table cardProducts drop column monthlyWithdrawalLimit;
  15.  
  16. alter table cardProducts drop column monthlyTransactionsLimit;
  17.  
  18. alter table cardProducts drop column weeklyTransactionsLimit;
  19.  
  20. alter table cardProducts drop column dailyTransactionsLimit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement