Skip to content

Instantly share code, notes, and snippets.

@kohenkatz
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kohenkatz/c1872aacfe639aa1f868 to your computer and use it in GitHub Desktop.
Save kohenkatz/c1872aacfe639aa1f868 to your computer and use it in GitHub Desktop.
INSERT INTO al_categories(
id, name, banner, parent_id, display_order, se_name, is_active)
VALUES
(1, 'Baby', NULL, 0, 1, 'baby', true),
(2, 'Furniture', NULL, 0, 3, 'furniture', true),
(3, 'Beds', NULL, 0, 2, 'beds', true),
(4, 'Strollers', NULL, 1, 2, 'strollers', true),
(5, 'Car Seats', NULL, 1, 1, 'car-seats', true),
(6, 'Baby Gifts', NULL, 1, 99, 'baby-gifts', true),
(7, 'High Chairs', NULL, 1, 6, 'high-chairs', true),
(8, 'Air Mattresses', NULL, 2, 1, 'air-mat', true),
(9, 'Accent Tables', NULL, 3, 8, 'tables', true),
(10, 'File Cabinets', NULL, 2, 19, 'file', true),
(11, 'Diaper Bags', NULL, 1, 8, 'diaper', true),
(12, 'Kitchen', NULL, 0, 14, 'kitchen', true),
(13, 'Double Strollers', NULL, 4, 1, 'double', true)
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment