Guest User

Untitled

a guest
May 23rd, 2018
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. mysql> desc orders;
  2. +-------------------------------+---------------+------+-----+---------+----------------+
  3. | Field | Type | Null | Key | Default | Extra |
  4. +-------------------------------+---------------+------+-----+---------+----------------+
  5. | id | int(11) | NO | PRI | NULL | auto_increment |
  6. | billing_address_id | int(11) | NO | | NULL | |
  7. | shipping_address_id | int(11) | NO | | NULL | |
  8. | subtotal | decimal(16,2) | NO | | NULL | |
  9. | shipping | decimal(10,2) | NO | | NULL | |
  10. | taxes | decimal(16,2) | NO | | NULL | |
  11. | total | decimal(16,2) | NO | | NULL | |
  12. | created_at | datetime | YES | | NULL | |
  13. | updated_at | datetime | YES | | NULL | |
  14. | shipping_method | varchar(40) | NO | | NULL | |
  15. | ip_address | varchar(15) | NO | | NULL | |
  16. | email | varchar(255) | NO | | NULL | |
  17. | completed_at | datetime | YES | MUL | NULL | |
  18. | gift_card_number | varchar(255) | YES | | NULL | |
  19. | gift_card_amount_applied | decimal(16,2) | NO | | 0.00 | |
  20. | credit_card_amount_applied | decimal(16,2) | NO | | 0.00 | |
  21. | delta | tinyint(1) | NO | | NULL | |
  22. | card_expiration_encrypted | blob | YES | | NULL | |
  23. | billing_first_name_encrypted | blob | YES | | NULL | |
  24. | billing_last_name_encrypted | blob | YES | | NULL | |
  25. | shipping_first_name_encrypted | blob | YES | | NULL | |
  26. | shipping_last_name_encrypted | blob | YES | | NULL | |
  27. | card_type_encrypted | blob | YES | | NULL | |
  28. | card_number_encrypted | blob | YES | | NULL | |
  29. | user_id | int(11) | YES | MUL | NULL | |
  30. +-------------------------------+---------------+------+-----+---------+----------------+
  31. 25 rows in set (0.01 sec)
Add Comment
Please, Sign In to add comment