-- --------------------------------------------------------
-- Host:                         127.0.0.1
-- Server version:               5.7.33 - MySQL Community Server (GPL)
-- Server OS:                    Win64
-- HeidiSQL Version:             11.2.0.6213
-- --------------------------------------------------------

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

-- Dumping structure for table hgagent.sales_invoice_items
DROP TABLE IF EXISTS `sales_invoice_items`;
CREATE TABLE IF NOT EXISTS `sales_invoice_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `do_no` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `do_date` date NOT NULL,
  `item_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `do_qty` decimal(10,2) NOT NULL,
  `unit_price` decimal(10,2) NOT NULL,
  `tax_price` double(10,2) NOT NULL,
  `discount_price` double(10,2) NOT NULL,
  `amount` decimal(10,2) NOT NULL,
  `taxable` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:false,1:true',
  `deleted_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `do_id` bigint(20) unsigned DEFAULT NULL,
  `doi_id` bigint(20) unsigned DEFAULT NULL,
  `si_id` bigint(20) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `sales_invoice_items_do_id_foreign` (`do_id`),
  KEY `sales_invoice_items_doi_id_foreign` (`doi_id`),
  KEY `sales_invoice_items_si_id_foreign` (`si_id`),
  CONSTRAINT `sales_invoice_items_do_id_foreign` FOREIGN KEY (`do_id`) REFERENCES `delivery_orders` (`id`),
  CONSTRAINT `sales_invoice_items_doi_id_foreign` FOREIGN KEY (`doi_id`) REFERENCES `delivery_order_items` (`id`),
  CONSTRAINT `sales_invoice_items_si_id_foreign` FOREIGN KEY (`si_id`) REFERENCES `sales_invoices` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;

-- Data exporting was unselected.

/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
