You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.3 KiB

1 month ago
  1. INSERT INTO `address` (
  2. `id`,
  3. `title`,
  4. `type`,
  5. `default`,
  6. `address`,
  7. `customer_id`,
  8. `created_at`,
  9. `updated_at`
  10. )
  11. VALUES (
  12. 1,
  13. 'Billing',
  14. 'billing',
  15. 0,
  16. '{\"zip\": \"99614\", \"city\": \"Kipnuk\", \"state\": \"AK\", \"country\": \"United States\", \"street_address\": \"2231 Kidd Avenue\"}',
  17. 1,
  18. '2021-08-18 13:18:03',
  19. '2021-08-18 13:18:03'
  20. ),
  21. (
  22. 2,
  23. 'Shipping',
  24. 'shipping',
  25. 0,
  26. '{\"zip\": \"40391\", \"city\": \"Winchester\", \"state\": \"KY\", \"country\": \"United States\", \"street_address\": \"2148 Straford Park\"}',
  27. 1,
  28. '2021-08-18 13:18:12',
  29. '2021-08-18 13:18:12'
  30. ),
  31. (
  32. 3,
  33. 'Billing',
  34. 'billing',
  35. 0,
  36. '{\"zip\": \"10001\", \"city\": \"New York\", \"state\": \"New York\", \"country\": \"US\", \"street_address\": \"260 Terry Lane\"}',
  37. 3,
  38. '2021-11-25 06:23:04',
  39. '2021-11-25 06:23:04'
  40. ),
  41. (
  42. 4,
  43. 'Shipping',
  44. 'shipping',
  45. 0,
  46. '{\"zip\": \"10022\", \"city\": \"New York\", \"state\": \"New York\", \"country\": \"US\", \"street_address\": \"1780 Angus Road\"}',
  47. 3,
  48. '2021-11-25 06:23:28',
  49. '2021-11-25 06:23:28'
  50. );