Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. select * from users where email = 'amitlon.ribeiro@gmail.cv';
  2. select * from subscriptions where user_id = 338;
  3. select * from plans where id = 231;
  4. update subscriptions
  5. set status = 'CANCELLED', end_date = '2014-09-09 03:40:25.612337'::timestamp, updated_at = '2014-09-09 03:40:25.612337'::timestamp
  6. where user_id = 338;
  7. select * from cards where user_id = 338;
  8. update cards
  9. set status = 'ACTIVE'
  10. where user_id = 338;
  11. select * from credit_cards where user_id = 338;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement