Advertisement
ahmadtri26

Item_data_product

Dec 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.0.9
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Dec 20, 2017 at 12:07 PM
  7. -- Server version: 5.6.14
  8. -- PHP Version: 5.5.6
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- Database: `scring`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Table structure for table `item_data_product`
  21. --
  22.  
  23. CREATE TABLE IF NOT EXISTS `item_data_product` (
  24. `id` int(10) NOT NULL AUTO_INCREMENT,
  25. `id_user_shop` int(20) DEFAULT NULL,
  26. `item_type` text,
  27. `item_name` varchar(30) DEFAULT NULL,
  28. `price` int(15) NOT NULL,
  29. `total_price` int(100) DEFAULT NULL,
  30. `type_price` varchar(5) DEFAULT NULL,
  31. `weight` int(10) NOT NULL,
  32. `type_weight` varchar(15) DEFAULT NULL,
  33. `condition` varchar(10) DEFAULT NULL,
  34. `information` text,
  35. `note` varchar(100) DEFAULT NULL,
  36. `qty` int(100) DEFAULT NULL,
  37. `minimum` int(15) NOT NULL,
  38. `stock_item` int(10) NOT NULL,
  39. PRIMARY KEY (`id`)
  40. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
  41.  
  42. --
  43. -- Dumping data for table `item_data_product`
  44. --
  45.  
  46. INSERT INTO `item_data_product` (`id`, `id_user_shop`, `item_type`, `item_name`, `price`, `total_price`, `type_price`, `weight`, `type_weight`, `condition`, `information`, `note`, `qty`, `minimum`, `stock_item`) VALUES
  47. (7, 8, 'Laptop & Accessorie', 'Electronik', 393939, NULL, 'Rupia', 90, 'kilogram', 'new', 'Bembeng jualan', NULL, 0, 1, 10),
  48. (1, 8, 'Moslem Fashion', 'Baju cewe lebaran', 1234, NULL, 'Rupia', 10, 'gram', 'new', 'Baju ukuran apa aja ada', NULL, 0, 1, 10),
  49. (2, 8, 'Moslem Fashion', 'Baju muslim cwe', 12124, NULL, 'Rupia', 12, 'gram', 'new', 'ukuran apa aja ada', NULL, 0, 1, 10),
  50. (3, 8, 'Female Fashion', 'Baju cewe keren', 1245, NULL, 'Rupia', 10, 'gram', 'new', 'ukuran apa aja ada ', NULL, 0, 1, 5),
  51. (4, 8, 'Female Fashion', 'Baju cewe sexy', 9855, NULL, 'Rupia', 10, 'gram', 'new', 'ukuran apa aja ada ', NULL, 0, 1, 10),
  52. (5, 8, 'Female Fashion', 'Baju cewe fashionable', 7890, NULL, 'Rupia', 3, 'gram', 'new', 'ukuran apa aja ada', NULL, 0, 1, 12);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement