-- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Jan 05, 2018 at 05:57 AM -- Server version: 5.7.19 -- PHP Version: 5.6.31 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `ospos` -- -- -------------------------------------------------------- -- -- Table structure for table `ospos_app_config` -- DROP TABLE IF EXISTS `ospos_app_config`; CREATE TABLE IF NOT EXISTS `ospos_app_config` ( `key` varchar(50) NOT NULL, `value` varchar(500) NOT NULL, PRIMARY KEY (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_app_config` -- INSERT INTO `ospos_app_config` (`key`, `value`) VALUES ('address', '123 Nowhere street'), ('barcode_content', 'id'), ('barcode_first_row', 'category'), ('barcode_font', 'Arial'), ('barcode_font_size', '10'), ('barcode_formats', '[]'), ('barcode_generate_if_empty', '0'), ('barcode_height', '50'), ('barcode_num_in_row', '2'), ('barcode_page_cellspacing', '20'), ('barcode_page_width', '100'), ('barcode_quality', '100'), ('barcode_second_row', 'item_code'), ('barcode_third_row', 'unit_price'), ('barcode_type', 'Code39'), ('barcode_width', '250'), ('cash_decimals', '2'), ('cash_rounding_code', '0'), ('client_id', '65530b3d-f7f8-4ae8-85c6-036f22509ce2'), ('company', 'Open Source Point of Sale'), ('company_logo', ''), ('country_codes', 'us'), ('currency_decimals', '2'), ('currency_symbol', '$'), ('customer_reward_enable', '0'), ('customer_sales_tax_support', '0'), ('dateformat', 'm/d/Y'), ('date_or_time_format', ''), ('default_origin_tax_code', ''), ('default_register_mode', 'sale'), ('default_sales_discount', '0'), ('default_tax_1_name', ''), ('default_tax_1_rate', ''), ('default_tax_2_name', ''), ('default_tax_2_rate', ''), ('default_tax_category', 'Standard'), ('default_tax_rate', '8'), ('dinner_table_enable', '0'), ('email', 'changeme@example.com'), ('fax', ''), ('financial_year', '1'), ('gcaptcha_enable', '0'), ('gcaptcha_secret_key', ''), ('gcaptcha_site_key', ''), ('giftcard_number', 'series'), ('invoice_default_comments', 'This is a default comment'), ('invoice_email_message', 'Dear {CU}, In attachment the receipt for sale $INV'), ('invoice_enable', '1'), ('language', 'english'), ('language_code', 'en-US'), ('last_used_invoice_number', '0'), ('last_used_quote_number', '0'), ('lines_per_page', '25'), ('line_sequence', '0'), ('mailpath', '/usr/sbin/sendmail'), ('msg_msg', ''), ('msg_pwd', ''), ('msg_src', ''), ('msg_uid', ''), ('notify_horizontal_position', 'center'), ('notify_vertical_position', 'bottom'), ('number_locale', 'en_US'), ('payment_options_order', 'cashdebitcredit'), ('phone', '555-555-5555'), ('print_bottom_margin', '0'), ('print_footer', '0'), ('print_header', '0'), ('print_left_margin', '0'), ('print_right_margin', '0'), ('print_silently', '1'), ('print_top_margin', '0'), ('protocol', 'mail'), ('quantity_decimals', '0'), ('receipt_font_size', '12'), ('receipt_show_company_name', '1'), ('receipt_show_description', '1'), ('receipt_show_serialnumber', '1'), ('receipt_show_taxes', '0'), ('receipt_show_total_discount', '1'), ('receipt_template', 'receipt_default'), ('receiving_calculate_average_price', '0'), ('recv_invoice_format', '{CO}'), ('return_policy', 'Test'), ('sales_invoice_format', '{CO}'), ('sales_quote_format', 'Q%y{QSEQ:6}'), ('smtp_crypto', 'ssl'), ('smtp_host', ''), ('smtp_pass', ''), ('smtp_port', '465'), ('smtp_timeout', '5'), ('smtp_user', ''), ('statistics', '1'), ('tax_decimals', '2'), ('tax_included', '0'), ('theme', 'flatly'), ('thousands_separator', '1'), ('timeformat', 'H:i:s'), ('timezone', 'America/New_York'), ('website', ''); -- -------------------------------------------------------- -- -- Table structure for table `ospos_customers` -- DROP TABLE IF EXISTS `ospos_customers`; CREATE TABLE IF NOT EXISTS `ospos_customers` ( `person_id` int(10) NOT NULL, `company_name` varchar(255) DEFAULT NULL, `account_number` varchar(255) DEFAULT NULL, `taxable` int(1) NOT NULL DEFAULT '1', `sales_tax_code` varchar(32) NOT NULL DEFAULT '1', `discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00', `package_id` int(11) DEFAULT NULL, `points` int(11) DEFAULT NULL, `deleted` int(1) NOT NULL DEFAULT '0', UNIQUE KEY `account_number` (`account_number`), KEY `person_id` (`person_id`), KEY `package_id` (`package_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_customers` -- INSERT INTO `ospos_customers` (`person_id`, `company_name`, `account_number`, `taxable`, `sales_tax_code`, `discount_percent`, `package_id`, `points`, `deleted`) VALUES (2, 'Smart Technologies', '01', 1, '', '0.00', NULL, NULL, 0), (4, 'y', NULL, 1, '1', '0.00', NULL, NULL, 1), (5, 'Gemalabrata', NULL, 1, '', '5.00', NULL, NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `ospos_customers_packages` -- DROP TABLE IF EXISTS `ospos_customers_packages`; CREATE TABLE IF NOT EXISTS `ospos_customers_packages` ( `package_id` int(11) NOT NULL AUTO_INCREMENT, `package_name` varchar(255) DEFAULT NULL, `points_percent` float NOT NULL DEFAULT '0', `deleted` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`package_id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_customers_packages` -- INSERT INTO `ospos_customers_packages` (`package_id`, `package_name`, `points_percent`, `deleted`) VALUES (1, 'Default', 0, 0), (2, 'Bronze', 10, 0), (3, 'Silver', 20, 0), (4, 'Gold', 30, 0), (5, 'Premium', 50, 0); -- -------------------------------------------------------- -- -- Table structure for table `ospos_customers_points` -- DROP TABLE IF EXISTS `ospos_customers_points`; CREATE TABLE IF NOT EXISTS `ospos_customers_points` ( `id` int(11) NOT NULL AUTO_INCREMENT, `person_id` int(11) NOT NULL, `package_id` int(11) NOT NULL, `sale_id` int(11) NOT NULL, `points_earned` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `person_id` (`person_id`), KEY `package_id` (`package_id`), KEY `sale_id` (`sale_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `ospos_dinner_tables` -- DROP TABLE IF EXISTS `ospos_dinner_tables`; CREATE TABLE IF NOT EXISTS `ospos_dinner_tables` ( `dinner_table_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `deleted` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`dinner_table_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_dinner_tables` -- INSERT INTO `ospos_dinner_tables` (`dinner_table_id`, `name`, `status`, `deleted`) VALUES (1, 'Delivery', 0, 0), (2, 'Take Away', 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `ospos_employees` -- DROP TABLE IF EXISTS `ospos_employees`; CREATE TABLE IF NOT EXISTS `ospos_employees` ( `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `person_id` int(10) NOT NULL, `deleted` int(1) NOT NULL DEFAULT '0', `hash_version` int(1) NOT NULL DEFAULT '2', UNIQUE KEY `username` (`username`), KEY `person_id` (`person_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_employees` -- INSERT INTO `ospos_employees` (`username`, `password`, `person_id`, `deleted`, `hash_version`) VALUES ('admin', '$2y$10$vJBSMlD02EC7ENSrKfVQXuvq9tNRHMtcOA8MSK2NYS748HHWm.gcG', 1, 0, 2), ('sandy', '$2y$10$Yg19oWwmWBhjXk/0CEm7Zey9qJKnJgC/p0r0OIh42d6NqXQE29AUW', 6, 0, 2), ('verawaty', '$2y$10$5v0/tVosqlXgt5sgiVbLweXPBXmy0KyFJBzDaWoHPLRNM9QQzMaQS', 3, 1, 2); -- -------------------------------------------------------- -- -- Table structure for table `ospos_giftcards` -- DROP TABLE IF EXISTS `ospos_giftcards`; CREATE TABLE IF NOT EXISTS `ospos_giftcards` ( `record_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `giftcard_id` int(11) NOT NULL AUTO_INCREMENT, `giftcard_number` varchar(255) DEFAULT NULL, `value` decimal(15,2) NOT NULL, `deleted` int(1) NOT NULL DEFAULT '0', `person_id` int(10) DEFAULT NULL, PRIMARY KEY (`giftcard_id`), UNIQUE KEY `giftcard_number` (`giftcard_number`), KEY `person_id` (`person_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `ospos_grants` -- DROP TABLE IF EXISTS `ospos_grants`; CREATE TABLE IF NOT EXISTS `ospos_grants` ( `permission_id` varchar(255) NOT NULL, `person_id` int(10) NOT NULL, PRIMARY KEY (`permission_id`,`person_id`), KEY `ospos_grants_ibfk_2` (`person_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_grants` -- INSERT INTO `ospos_grants` (`permission_id`, `person_id`) VALUES ('config', 1), ('customers', 1), ('employees', 1), ('giftcards', 1), ('items', 1), ('items_stock', 1), ('item_kits', 1), ('messages', 1), ('migrate', 1), ('receivings', 1), ('receivings_stock', 1), ('reports', 1), ('reports_categories', 1), ('reports_customers', 1), ('reports_discounts', 1), ('reports_employees', 1), ('reports_inventory', 1), ('reports_items', 1), ('reports_payments', 1), ('reports_receivings', 1), ('reports_sales', 1), ('reports_suppliers', 1), ('reports_taxes', 1), ('sales', 1), ('sales_stock', 1), ('suppliers', 1), ('taxes', 1), ('customers', 6), ('giftcards', 6), ('items', 6), ('items_stock', 6), ('item_kits', 6), ('receivings', 6), ('receivings_stock', 6), ('reports', 6), ('reports_items', 6), ('reports_payments', 6), ('reports_receivings', 6), ('reports_sales', 6), ('reports_suppliers', 6), ('reports_taxes', 6), ('sales', 6), ('sales_stock', 6), ('suppliers', 6); -- -------------------------------------------------------- -- -- Table structure for table `ospos_inventory` -- DROP TABLE IF EXISTS `ospos_inventory`; CREATE TABLE IF NOT EXISTS `ospos_inventory` ( `trans_id` int(11) NOT NULL AUTO_INCREMENT, `trans_items` int(11) NOT NULL DEFAULT '0', `trans_user` int(11) NOT NULL DEFAULT '0', `trans_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `trans_comment` text NOT NULL, `trans_location` int(11) NOT NULL, `trans_inventory` decimal(15,3) NOT NULL DEFAULT '0.000', PRIMARY KEY (`trans_id`), KEY `trans_items` (`trans_items`), KEY `trans_user` (`trans_user`), KEY `trans_location` (`trans_location`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_inventory` -- INSERT INTO `ospos_inventory` (`trans_id`, `trans_items`, `trans_user`, `trans_date`, `trans_comment`, `trans_location`, `trans_inventory`) VALUES (1, 1, 1, '2018-01-03 06:03:21', 'Qty CSV Imported', 1, '100.000'), (2, 1, 6, '2018-01-02 18:25:10', 'POS 2', 1, '-1.000'); -- -------------------------------------------------------- -- -- Table structure for table `ospos_items` -- DROP TABLE IF EXISTS `ospos_items`; CREATE TABLE IF NOT EXISTS `ospos_items` ( `name` varchar(255) NOT NULL, `category` varchar(255) NOT NULL, `supplier_id` int(11) DEFAULT NULL, `item_number` varchar(255) DEFAULT NULL, `description` varchar(255) NOT NULL, `cost_price` decimal(15,2) NOT NULL, `unit_price` decimal(15,2) NOT NULL, `reorder_level` decimal(15,3) NOT NULL DEFAULT '0.000', `receiving_quantity` decimal(15,3) NOT NULL DEFAULT '1.000', `item_id` int(10) NOT NULL AUTO_INCREMENT, `pic_filename` varchar(255) DEFAULT NULL, `allow_alt_description` tinyint(1) NOT NULL, `is_serialized` tinyint(1) NOT NULL, `stock_type` tinyint(2) NOT NULL DEFAULT '0', `item_type` tinyint(2) NOT NULL DEFAULT '0', `tax_category_id` int(10) NOT NULL DEFAULT '1', `deleted` int(1) NOT NULL DEFAULT '0', `custom1` varchar(255) DEFAULT NULL, `custom2` varchar(255) DEFAULT NULL, `custom3` varchar(255) DEFAULT NULL, `custom4` varchar(255) DEFAULT NULL, `custom5` varchar(255) DEFAULT NULL, `custom6` varchar(255) DEFAULT NULL, `custom7` varchar(255) DEFAULT NULL, `custom8` varchar(255) DEFAULT NULL, `custom9` varchar(255) DEFAULT NULL, `custom10` varchar(255) DEFAULT NULL, PRIMARY KEY (`item_id`), UNIQUE KEY `item_number` (`item_number`), KEY `supplier_id` (`supplier_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_items` -- INSERT INTO `ospos_items` (`name`, `category`, `supplier_id`, `item_number`, `description`, `cost_price`, `unit_price`, `reorder_level`, `receiving_quantity`, `item_id`, `pic_filename`, `allow_alt_description`, `is_serialized`, `stock_type`, `item_type`, `tax_category_id`, `deleted`, `custom1`, `custom2`, `custom3`, `custom4`, `custom5`, `custom6`, `custom7`, `custom8`, `custom9`, `custom10`) VALUES ('Apple iMac', 'Computers', NULL, '33333333', 'Best Computer ever', '800.00', '1200.00', '1.000', '1.000', 1, 'item.jpg', 1, 0, 0, 0, 1, 0, 'Oz, Frank', 'The Bunny and the Hill', 'Monkeys,Giraffes,Gorillas', 'English', 'New', 'Apple', '', '1999', 'D3lk3jlkjs', 'Hardbound'); -- -------------------------------------------------------- -- -- Table structure for table `ospos_items_taxes` -- DROP TABLE IF EXISTS `ospos_items_taxes`; CREATE TABLE IF NOT EXISTS `ospos_items_taxes` ( `item_id` int(10) NOT NULL, `name` varchar(255) NOT NULL, `percent` decimal(15,3) NOT NULL, PRIMARY KEY (`item_id`,`name`,`percent`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_items_taxes` -- INSERT INTO `ospos_items_taxes` (`item_id`, `name`, `percent`) VALUES (1, 'Tax 1', '8.000'), (1, 'Tax 2', '10.000'); -- -------------------------------------------------------- -- -- Table structure for table `ospos_item_kits` -- DROP TABLE IF EXISTS `ospos_item_kits`; CREATE TABLE IF NOT EXISTS `ospos_item_kits` ( `item_kit_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `item_id` int(10) NOT NULL DEFAULT '0', `kit_discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00', `price_option` tinyint(2) NOT NULL DEFAULT '0', `print_option` tinyint(2) NOT NULL DEFAULT '0', `description` varchar(255) NOT NULL, PRIMARY KEY (`item_kit_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `ospos_item_kit_items` -- DROP TABLE IF EXISTS `ospos_item_kit_items`; CREATE TABLE IF NOT EXISTS `ospos_item_kit_items` ( `item_kit_id` int(11) NOT NULL, `item_id` int(11) NOT NULL, `quantity` decimal(15,3) NOT NULL, `kit_sequence` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`item_kit_id`,`item_id`,`quantity`), KEY `ospos_item_kit_items_ibfk_2` (`item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `ospos_item_quantities` -- DROP TABLE IF EXISTS `ospos_item_quantities`; CREATE TABLE IF NOT EXISTS `ospos_item_quantities` ( `item_id` int(11) NOT NULL, `location_id` int(11) NOT NULL, `quantity` decimal(15,3) NOT NULL DEFAULT '0.000', PRIMARY KEY (`item_id`,`location_id`), KEY `item_id` (`item_id`), KEY `location_id` (`location_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_item_quantities` -- INSERT INTO `ospos_item_quantities` (`item_id`, `location_id`, `quantity`) VALUES (1, 1, '99.000'); -- -------------------------------------------------------- -- -- Table structure for table `ospos_migrations` -- DROP TABLE IF EXISTS `ospos_migrations`; CREATE TABLE IF NOT EXISTS `ospos_migrations` ( `version` bigint(20) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_migrations` -- INSERT INTO `ospos_migrations` (`version`) VALUES (0); -- -------------------------------------------------------- -- -- Table structure for table `ospos_modules` -- DROP TABLE IF EXISTS `ospos_modules`; CREATE TABLE IF NOT EXISTS `ospos_modules` ( `name_lang_key` varchar(255) NOT NULL, `desc_lang_key` varchar(255) NOT NULL, `sort` int(10) NOT NULL, `module_id` varchar(255) NOT NULL, PRIMARY KEY (`module_id`), UNIQUE KEY `desc_lang_key` (`desc_lang_key`), UNIQUE KEY `name_lang_key` (`name_lang_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_modules` -- INSERT INTO `ospos_modules` (`name_lang_key`, `desc_lang_key`, `sort`, `module_id`) VALUES ('module_config', 'module_config_desc', 110, 'config'), ('module_customers', 'module_customers_desc', 10, 'customers'), ('module_employees', 'module_employees_desc', 80, 'employees'), ('module_giftcards', 'module_giftcards_desc', 90, 'giftcards'), ('module_items', 'module_items_desc', 20, 'items'), ('module_item_kits', 'module_item_kits_desc', 30, 'item_kits'), ('module_messages', 'module_messages_desc', 100, 'messages'), ('module_migrate', 'module_migrate_desc', 120, 'migrate'), ('module_receivings', 'module_receivings_desc', 60, 'receivings'), ('module_reports', 'module_reports_desc', 50, 'reports'), ('module_sales', 'module_sales_desc', 70, 'sales'), ('module_suppliers', 'module_suppliers_desc', 40, 'suppliers'), ('module_taxes', 'module_taxes_desc', 105, 'taxes'); -- -------------------------------------------------------- -- -- Table structure for table `ospos_people` -- DROP TABLE IF EXISTS `ospos_people`; CREATE TABLE IF NOT EXISTS `ospos_people` ( `first_name` varchar(255) NOT NULL, `last_name` varchar(255) NOT NULL, `gender` int(1) DEFAULT NULL, `phone_number` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `address_1` varchar(255) NOT NULL, `address_2` varchar(255) NOT NULL, `city` varchar(255) NOT NULL, `state` varchar(255) NOT NULL, `zip` varchar(255) NOT NULL, `country` varchar(255) NOT NULL, `comments` text NOT NULL, `person_id` int(10) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`person_id`), KEY `email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_people` -- INSERT INTO `ospos_people` (`first_name`, `last_name`, `gender`, `phone_number`, `email`, `address_1`, `address_2`, `city`, `state`, `zip`, `country`, `comments`, `person_id`) VALUES ('John', 'Doe', NULL, '555-555-5555', 'changeme@example.com', 'Address 1', '', '', '', '', '', '', 1), ('Martian', 'Logi', 1, '02157937031', 'martian.l091@gmail.com', 'Sudirman Plaza', '', 'Jakarta', 'DKI Jakarta', '12910', 'Indonesia', '', 2), ('Verawaty', 'Wang', 1, '02157937031', 'martian.l091@gmail.com', 'Jl. Pelabuhan', '', 'Sukabumi', 'Jawa Barat', '43142', 'Indonesia', 'test', 3), ('33333333', 'Apple iMac', 0, '800', '', '1200', 'Tax 1', '8', 'Tax 2', '10', '1', 'Best Computer ever', 4), ('Sandy', 'Subrata', 1, '585-555-1111', 'sandysubrata@gemalabrata.com', 'Komplek DPR', 'Meruya', 'Jakarta Barat', 'DKI Jakarta', '11111', 'Indonesia', 'Testing ospos', 5), ('Bosa', 'Brata', 1, '021688238333', 'sandy@roadmann.id', '', '', '', '', '', '', '', 6); -- -------------------------------------------------------- -- -- Table structure for table `ospos_permissions` -- DROP TABLE IF EXISTS `ospos_permissions`; CREATE TABLE IF NOT EXISTS `ospos_permissions` ( `permission_id` varchar(255) NOT NULL, `module_id` varchar(255) NOT NULL, `location_id` int(10) DEFAULT NULL, PRIMARY KEY (`permission_id`), KEY `module_id` (`module_id`), KEY `ospos_permissions_ibfk_2` (`location_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_permissions` -- INSERT INTO `ospos_permissions` (`permission_id`, `module_id`, `location_id`) VALUES ('config', 'config', NULL), ('customers', 'customers', NULL), ('employees', 'employees', NULL), ('giftcards', 'giftcards', NULL), ('items', 'items', NULL), ('items_stock', 'items', 1), ('item_kits', 'item_kits', NULL), ('messages', 'messages', NULL), ('migrate', 'migrate', NULL), ('receivings', 'receivings', NULL), ('receivings_stock', 'receivings', 1), ('reports', 'reports', NULL), ('reports_categories', 'reports', NULL), ('reports_customers', 'reports', NULL), ('reports_discounts', 'reports', NULL), ('reports_employees', 'reports', NULL), ('reports_inventory', 'reports', NULL), ('reports_items', 'reports', NULL), ('reports_payments', 'reports', NULL), ('reports_receivings', 'reports', NULL), ('reports_sales', 'reports', NULL), ('reports_suppliers', 'reports', NULL), ('reports_taxes', 'reports', NULL), ('sales', 'sales', NULL), ('sales_stock', 'sales', 1), ('suppliers', 'suppliers', NULL), ('taxes', 'taxes', NULL); -- -------------------------------------------------------- -- -- Table structure for table `ospos_receivings` -- DROP TABLE IF EXISTS `ospos_receivings`; CREATE TABLE IF NOT EXISTS `ospos_receivings` ( `receiving_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `supplier_id` int(10) DEFAULT NULL, `employee_id` int(10) NOT NULL DEFAULT '0', `comment` text, `receiving_id` int(10) NOT NULL AUTO_INCREMENT, `payment_type` varchar(20) DEFAULT NULL, `reference` varchar(32) DEFAULT NULL, PRIMARY KEY (`receiving_id`), KEY `supplier_id` (`supplier_id`), KEY `employee_id` (`employee_id`), KEY `reference` (`reference`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `ospos_receivings_items` -- DROP TABLE IF EXISTS `ospos_receivings_items`; CREATE TABLE IF NOT EXISTS `ospos_receivings_items` ( `receiving_id` int(10) NOT NULL DEFAULT '0', `item_id` int(10) NOT NULL DEFAULT '0', `description` varchar(30) DEFAULT NULL, `serialnumber` varchar(30) DEFAULT NULL, `line` int(3) NOT NULL, `quantity_purchased` decimal(15,3) NOT NULL DEFAULT '0.000', `item_cost_price` decimal(15,2) NOT NULL, `item_unit_price` decimal(15,2) NOT NULL, `discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00', `item_location` int(11) NOT NULL, `receiving_quantity` decimal(15,3) NOT NULL DEFAULT '1.000', PRIMARY KEY (`receiving_id`,`item_id`,`line`), KEY `item_id` (`item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `ospos_sales` -- DROP TABLE IF EXISTS `ospos_sales`; CREATE TABLE IF NOT EXISTS `ospos_sales` ( `sale_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `customer_id` int(10) DEFAULT NULL, `employee_id` int(10) NOT NULL DEFAULT '0', `comment` text, `invoice_number` varchar(32) DEFAULT NULL, `quote_number` varchar(32) DEFAULT NULL, `sale_id` int(10) NOT NULL AUTO_INCREMENT, `sale_status` tinyint(2) NOT NULL DEFAULT '0', `dinner_table_id` int(11) DEFAULT NULL, PRIMARY KEY (`sale_id`), UNIQUE KEY `invoice_number` (`invoice_number`), KEY `customer_id` (`customer_id`), KEY `employee_id` (`employee_id`), KEY `sale_time` (`sale_time`), KEY `dinner_table_id` (`dinner_table_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_sales` -- INSERT INTO `ospos_sales` (`sale_time`, `customer_id`, `employee_id`, `comment`, `invoice_number`, `quote_number`, `sale_id`, `sale_status`, `dinner_table_id`) VALUES ('2018-01-02 18:24:09', NULL, 6, '', NULL, NULL, 1, 1, NULL), ('2018-01-02 18:25:10', NULL, 6, '', '0', NULL, 2, 0, NULL); -- -------------------------------------------------------- -- -- Table structure for table `ospos_sales_items` -- DROP TABLE IF EXISTS `ospos_sales_items`; CREATE TABLE IF NOT EXISTS `ospos_sales_items` ( `sale_id` int(10) NOT NULL DEFAULT '0', `item_id` int(10) NOT NULL DEFAULT '0', `description` varchar(255) DEFAULT NULL, `serialnumber` varchar(30) DEFAULT NULL, `line` int(3) NOT NULL DEFAULT '0', `quantity_purchased` decimal(15,3) NOT NULL DEFAULT '0.000', `item_cost_price` decimal(15,2) NOT NULL, `item_unit_price` decimal(15,2) NOT NULL, `discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00', `item_location` int(11) NOT NULL, `print_option` tinyint(2) NOT NULL DEFAULT '0', PRIMARY KEY (`sale_id`,`item_id`,`line`), KEY `sale_id` (`sale_id`), KEY `item_id` (`item_id`), KEY `item_location` (`item_location`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_sales_items` -- INSERT INTO `ospos_sales_items` (`sale_id`, `item_id`, `description`, `serialnumber`, `line`, `quantity_purchased`, `item_cost_price`, `item_unit_price`, `discount_percent`, `item_location`, `print_option`) VALUES (1, 1, 'Best Computer ever', '', 1, '1.000', '800.00', '1200.00', '0.00', 1, 0), (2, 1, 'Best Computer ever', '', 1, '1.000', '800.00', '1200.00', '0.00', 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `ospos_sales_items_taxes` -- DROP TABLE IF EXISTS `ospos_sales_items_taxes`; CREATE TABLE IF NOT EXISTS `ospos_sales_items_taxes` ( `sale_id` int(10) NOT NULL, `item_id` int(10) NOT NULL, `line` int(3) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL, `percent` decimal(15,4) NOT NULL DEFAULT '0.0000', `tax_type` tinyint(2) NOT NULL DEFAULT '0', `rounding_code` tinyint(2) NOT NULL DEFAULT '0', `cascade_tax` tinyint(2) NOT NULL DEFAULT '0', `cascade_sequence` tinyint(2) NOT NULL DEFAULT '0', `item_tax_amount` decimal(15,4) NOT NULL DEFAULT '0.0000', PRIMARY KEY (`sale_id`,`item_id`,`line`,`name`,`percent`), KEY `sale_id` (`sale_id`), KEY `item_id` (`item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_sales_items_taxes` -- INSERT INTO `ospos_sales_items_taxes` (`sale_id`, `item_id`, `line`, `name`, `percent`, `tax_type`, `rounding_code`, `cascade_tax`, `cascade_sequence`, `item_tax_amount`) VALUES (1, 1, 1, 'Tax 1', '8.0000', 1, 1, 0, 0, '96.0000'), (1, 1, 1, 'Tax 2', '10.0000', 1, 1, 0, 0, '120.0000'), (2, 1, 1, 'Tax 1', '8.0000', 1, 1, 0, 0, '96.0000'), (2, 1, 1, 'Tax 2', '10.0000', 1, 1, 0, 0, '120.0000'); -- -------------------------------------------------------- -- -- Table structure for table `ospos_sales_payments` -- DROP TABLE IF EXISTS `ospos_sales_payments`; CREATE TABLE IF NOT EXISTS `ospos_sales_payments` ( `sale_id` int(10) NOT NULL, `payment_type` varchar(40) NOT NULL, `payment_amount` decimal(15,2) NOT NULL, PRIMARY KEY (`sale_id`,`payment_type`), KEY `sale_id` (`sale_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_sales_payments` -- INSERT INTO `ospos_sales_payments` (`sale_id`, `payment_type`, `payment_amount`) VALUES (1, 'Cash', '1416.00'), (2, 'Cash', '1416.00'); -- -------------------------------------------------------- -- -- Table structure for table `ospos_sales_reward_points` -- DROP TABLE IF EXISTS `ospos_sales_reward_points`; CREATE TABLE IF NOT EXISTS `ospos_sales_reward_points` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sale_id` int(11) NOT NULL, `earned` float NOT NULL, `used` float NOT NULL, PRIMARY KEY (`id`), KEY `sale_id` (`sale_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `ospos_sales_taxes` -- DROP TABLE IF EXISTS `ospos_sales_taxes`; CREATE TABLE IF NOT EXISTS `ospos_sales_taxes` ( `sale_id` int(10) NOT NULL, `tax_type` smallint(2) NOT NULL, `tax_group` varchar(32) NOT NULL, `sale_tax_basis` decimal(15,4) NOT NULL, `sale_tax_amount` decimal(15,4) NOT NULL, `print_sequence` tinyint(2) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL, `tax_rate` decimal(15,4) NOT NULL, `sales_tax_code` varchar(32) NOT NULL DEFAULT '', `rounding_code` tinyint(2) NOT NULL DEFAULT '0', PRIMARY KEY (`sale_id`,`tax_type`,`tax_group`), KEY `print_sequence` (`sale_id`,`print_sequence`,`tax_type`,`tax_group`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_sales_taxes` -- INSERT INTO `ospos_sales_taxes` (`sale_id`, `tax_type`, `tax_group`, `sale_tax_basis`, `sale_tax_amount`, `print_sequence`, `name`, `tax_rate`, `sales_tax_code`, `rounding_code`) VALUES (1, 1, '10% Tax 2', '1200.0000', '120.0000', 1, 'Tax 2', '10.0000', '', 1), (1, 1, '8% Tax 1', '1200.0000', '96.0000', 0, 'Tax 1', '8.0000', '', 1), (2, 1, '10% Tax 2', '1200.0000', '120.0000', 1, 'Tax 2', '10.0000', '', 1), (2, 1, '8% Tax 1', '1200.0000', '96.0000', 0, 'Tax 1', '8.0000', '', 1); -- -------------------------------------------------------- -- -- Table structure for table `ospos_sessions` -- DROP TABLE IF EXISTS `ospos_sessions`; CREATE TABLE IF NOT EXISTS `ospos_sessions` ( `id` varchar(40) NOT NULL, `ip_address` varchar(45) NOT NULL, `timestamp` int(10) UNSIGNED NOT NULL DEFAULT '0', `data` blob NOT NULL, KEY `ci_sessions_timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_sessions` -- INSERT INTO `ospos_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('qconp7238d46k2b5b89a7gjnhu21io3l', '::1', 1510551696, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531303535313635383b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2231223b), ('8u9sautfglcghonepqtt462v6ojopg44', '::1', 1510552074, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531303535323036353b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2231223b6974656d5f6c6f636174696f6e7c733a313a2231223b), ('p5chbhkom9jqialt6pcu0qsv6ggfdslc', '::1', 1510557175, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531303535323433333b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2231223b6974656d5f6c6f636174696f6e7c733a313a2231223b), ('vh3gh9iphmoo2ie81c9jf6sjmhkrm4q2', '::1', 1510558931, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531303535383732363b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2231223b6974656d5f6c6f636174696f6e7c733a313a2231223b73616c65735f636172747c613a303a7b7d73616c65735f637573746f6d65727c693a2d313b73616c65735f6d6f64657c733a343a2273616c65223b73616c65735f6c6f636174696f6e7c733a313a2231223b73616c65735f7061796d656e74737c613a303a7b7d636173685f6d6f64657c693a313b636173685f726f756e64696e677c693a303b73616c65735f696e766f6963655f6e756d6265727c4e3b), ('esl27ke2sr7itritclvqi5nhvn9grnej', '::1', 1510559066, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531303535393035363b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2231223b6974656d5f6c6f636174696f6e7c733a313a2231223b73616c65735f636172747c613a303a7b7d73616c65735f637573746f6d65727c693a2d313b73616c65735f6d6f64657c733a343a2273616c65223b73616c65735f6c6f636174696f6e7c733a313a2231223b73616c65735f7061796d656e74737c613a303a7b7d636173685f6d6f64657c693a313b636173685f726f756e64696e677c693a303b73616c65735f696e766f6963655f6e756d6265727c4e3b), ('rh3rcrsfk9582l65aul7ildajk4lnp41', '::1', 1510597109, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531303539363836313b73657373696f6e5f736861317c733a373a2234663561643537223b), ('mkkc8f3uidqb0s93fm23bae06qm88k6k', '::1', 1510622783, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531303632323738323b73657373696f6e5f736861317c733a373a2234663561643537223b), ('1a2j3bgdv55t6r6j6ipanh9a11ahc2uu', '::1', 1514955271, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531343935343939323b73657373696f6e5f736861317c733a373a2234663561643537223b), ('6as3sgkohugofrsn5de365tv4ls54cbj', '::1', 1514955737, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531343935353733373b73657373696f6e5f736861317c733a373a2234663561643537223b), ('450te3v83ufrumc5vbggjt3ghd049g7c', '::1', 1514959632, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531343935393236303b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2231223b6974656d5f6c6f636174696f6e7c733a313a2231223b), ('fs37n9c9vmjv59t8ikv6mgm3hg2ldor5', '::1', 1514960325, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531343935393935393b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2236223b6974656d5f6c6f636174696f6e7c733a313a2231223b73616c65735f636172747c613a303a7b7d73616c65735f637573746f6d65727c693a2d313b73616c65735f6d6f64657c733a343a2273616c65223b73616c65735f6c6f636174696f6e7c733a313a2231223b73616c65735f7061796d656e74737c613a303a7b7d636173685f6d6f64657c693a313b636173685f726f756e64696e677c693a303b73616c65735f696e766f6963655f6e756d6265727c4e3b726563765f636172747c613a303a7b7d726563765f6d6f64657c733a373a2272656365697665223b726563765f737570706c6965727c693a2d313b), ('vspn1nrb84sjnhul4c7cn7oml1ojdfm3', '::1', 1514960692, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531343936303333353b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2236223b6974656d5f6c6f636174696f6e7c733a313a2231223b73616c65735f6d6f64657c733a343a2273616c65223b73616c65735f6c6f636174696f6e7c733a313a2231223b726563765f636172747c613a303a7b7d726563765f6d6f64657c733a373a2272656365697665223b726563765f737570706c6965727c693a2d313b73616c65735f7072696e745f61667465725f73616c657c733a343a2274727565223b73616c65735f696e766f6963655f6e756d6265725f656e61626c65647c623a303b73616c65735f636172747c613a303a7b7d73616c65735f637573746f6d65727c693a2d313b73616c65735f7061796d656e74737c613a303a7b7d636173685f6d6f64657c693a313b636173685f726f756e64696e677c693a303b73616c65735f696e766f6963655f6e756d6265727c4e3b), ('7alg53srn57o9gm23b5v0is6vrk5q2dq', '::1', 1514960808, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531343936303639343b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2236223b6974656d5f6c6f636174696f6e7c733a313a2231223b73616c65735f6d6f64657c733a343a2273616c65223b73616c65735f6c6f636174696f6e7c733a313a2231223b726563765f636172747c613a303a7b7d726563765f6d6f64657c733a373a2272656365697665223b726563765f737570706c6965727c693a2d313b73616c65735f7072696e745f61667465725f73616c657c733a343a2274727565223b73616c65735f696e766f6963655f6e756d6265725f656e61626c65647c623a303b73616c65735f636172747c613a303a7b7d73616c65735f637573746f6d65727c693a2d313b73616c65735f7061796d656e74737c613a303a7b7d636173685f6d6f64657c693a313b636173685f726f756e64696e677c693a303b73616c65735f696e766f6963655f6e756d6265727c4e3b), ('qop76rht8ki85gn6bjud19v2rjprpb7m', '::1', 1514964379, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531343936343337393b73657373696f6e5f736861317c733a373a2234663561643537223b), ('hr8tinflqktnubbnpm4dtl3vjr9d974q', '::1', 1515054019, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531353035333936383b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2231223b), ('36ruva410ob6mn8bba2fql3coo9lddmu', '::1', 1515055574, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531353035353536373b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2231223b6974656d5f6c6f636174696f6e7c733a313a2231223b), ('4gf0i5gj58mb8ri9loinu9dd2sqf0819', '::1', 1515130795, 0x5f5f63695f6c6173745f726567656e65726174657c693a313531353133303737383b73657373696f6e5f736861317c733a373a2234663561643537223b706572736f6e5f69647c733a313a2231223b); -- -------------------------------------------------------- -- -- Table structure for table `ospos_stock_locations` -- DROP TABLE IF EXISTS `ospos_stock_locations`; CREATE TABLE IF NOT EXISTS `ospos_stock_locations` ( `location_id` int(11) NOT NULL AUTO_INCREMENT, `location_name` varchar(255) DEFAULT NULL, `deleted` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`location_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_stock_locations` -- INSERT INTO `ospos_stock_locations` (`location_id`, `location_name`, `deleted`) VALUES (1, 'stock', 0); -- -------------------------------------------------------- -- -- Table structure for table `ospos_suppliers` -- DROP TABLE IF EXISTS `ospos_suppliers`; CREATE TABLE IF NOT EXISTS `ospos_suppliers` ( `person_id` int(10) NOT NULL, `company_name` varchar(255) NOT NULL, `agency_name` varchar(255) NOT NULL, `account_number` varchar(255) DEFAULT NULL, `deleted` int(1) NOT NULL DEFAULT '0', UNIQUE KEY `account_number` (`account_number`), KEY `person_id` (`person_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `ospos_tax_categories` -- DROP TABLE IF EXISTS `ospos_tax_categories`; CREATE TABLE IF NOT EXISTS `ospos_tax_categories` ( `tax_category_id` int(10) NOT NULL AUTO_INCREMENT, `tax_category` varchar(32) NOT NULL, `tax_group_sequence` tinyint(2) NOT NULL, PRIMARY KEY (`tax_category_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- -- Dumping data for table `ospos_tax_categories` -- INSERT INTO `ospos_tax_categories` (`tax_category_id`, `tax_category`, `tax_group_sequence`) VALUES (1, 'Standard', 10), (2, 'Service', 12), (3, 'Alcohol', 11); -- -------------------------------------------------------- -- -- Table structure for table `ospos_tax_codes` -- DROP TABLE IF EXISTS `ospos_tax_codes`; CREATE TABLE IF NOT EXISTS `ospos_tax_codes` ( `tax_code` varchar(32) NOT NULL, `tax_code_name` varchar(255) NOT NULL DEFAULT '', `tax_code_type` tinyint(2) NOT NULL DEFAULT '0', `city` varchar(255) NOT NULL DEFAULT '', `state` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`tax_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `ospos_tax_code_rates` -- DROP TABLE IF EXISTS `ospos_tax_code_rates`; CREATE TABLE IF NOT EXISTS `ospos_tax_code_rates` ( `rate_tax_code` varchar(32) NOT NULL, `rate_tax_category_id` int(10) NOT NULL, `tax_rate` decimal(15,4) NOT NULL DEFAULT '0.0000', `rounding_code` tinyint(2) NOT NULL DEFAULT '0', PRIMARY KEY (`rate_tax_code`,`rate_tax_category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Constraints for dumped tables -- -- -- Constraints for table `ospos_customers` -- ALTER TABLE `ospos_customers` ADD CONSTRAINT `ospos_customers_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `ospos_people` (`person_id`), ADD CONSTRAINT `ospos_customers_ibfk_2` FOREIGN KEY (`package_id`) REFERENCES `ospos_customers_packages` (`package_id`); -- -- Constraints for table `ospos_customers_points` -- ALTER TABLE `ospos_customers_points` ADD CONSTRAINT `ospos_customers_points_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `ospos_customers` (`person_id`), ADD CONSTRAINT `ospos_customers_points_ibfk_2` FOREIGN KEY (`package_id`) REFERENCES `ospos_customers_packages` (`package_id`), ADD CONSTRAINT `ospos_customers_points_ibfk_3` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales` (`sale_id`); -- -- Constraints for table `ospos_employees` -- ALTER TABLE `ospos_employees` ADD CONSTRAINT `ospos_employees_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `ospos_people` (`person_id`); -- -- Constraints for table `ospos_giftcards` -- ALTER TABLE `ospos_giftcards` ADD CONSTRAINT `ospos_giftcards_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `ospos_people` (`person_id`); -- -- Constraints for table `ospos_grants` -- ALTER TABLE `ospos_grants` ADD CONSTRAINT `ospos_grants_ibfk_1` FOREIGN KEY (`permission_id`) REFERENCES `ospos_permissions` (`permission_id`) ON DELETE CASCADE, ADD CONSTRAINT `ospos_grants_ibfk_2` FOREIGN KEY (`person_id`) REFERENCES `ospos_employees` (`person_id`) ON DELETE CASCADE; -- -- Constraints for table `ospos_inventory` -- ALTER TABLE `ospos_inventory` ADD CONSTRAINT `ospos_inventory_ibfk_1` FOREIGN KEY (`trans_items`) REFERENCES `ospos_items` (`item_id`), ADD CONSTRAINT `ospos_inventory_ibfk_2` FOREIGN KEY (`trans_user`) REFERENCES `ospos_employees` (`person_id`), ADD CONSTRAINT `ospos_inventory_ibfk_3` FOREIGN KEY (`trans_location`) REFERENCES `ospos_stock_locations` (`location_id`); -- -- Constraints for table `ospos_items` -- ALTER TABLE `ospos_items` ADD CONSTRAINT `ospos_items_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `ospos_suppliers` (`person_id`); -- -- Constraints for table `ospos_items_taxes` -- ALTER TABLE `ospos_items_taxes` ADD CONSTRAINT `ospos_items_taxes_ibfk_1` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`) ON DELETE CASCADE; -- -- Constraints for table `ospos_item_kit_items` -- ALTER TABLE `ospos_item_kit_items` ADD CONSTRAINT `ospos_item_kit_items_ibfk_1` FOREIGN KEY (`item_kit_id`) REFERENCES `ospos_item_kits` (`item_kit_id`) ON DELETE CASCADE, ADD CONSTRAINT `ospos_item_kit_items_ibfk_2` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`) ON DELETE CASCADE; -- -- Constraints for table `ospos_item_quantities` -- ALTER TABLE `ospos_item_quantities` ADD CONSTRAINT `ospos_item_quantities_ibfk_1` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`), ADD CONSTRAINT `ospos_item_quantities_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `ospos_stock_locations` (`location_id`); -- -- Constraints for table `ospos_permissions` -- ALTER TABLE `ospos_permissions` ADD CONSTRAINT `ospos_permissions_ibfk_1` FOREIGN KEY (`module_id`) REFERENCES `ospos_modules` (`module_id`) ON DELETE CASCADE, ADD CONSTRAINT `ospos_permissions_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `ospos_stock_locations` (`location_id`) ON DELETE CASCADE; -- -- Constraints for table `ospos_receivings` -- ALTER TABLE `ospos_receivings` ADD CONSTRAINT `ospos_receivings_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `ospos_employees` (`person_id`), ADD CONSTRAINT `ospos_receivings_ibfk_2` FOREIGN KEY (`supplier_id`) REFERENCES `ospos_suppliers` (`person_id`); -- -- Constraints for table `ospos_receivings_items` -- ALTER TABLE `ospos_receivings_items` ADD CONSTRAINT `ospos_receivings_items_ibfk_1` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`), ADD CONSTRAINT `ospos_receivings_items_ibfk_2` FOREIGN KEY (`receiving_id`) REFERENCES `ospos_receivings` (`receiving_id`); -- -- Constraints for table `ospos_sales` -- ALTER TABLE `ospos_sales` ADD CONSTRAINT `ospos_sales_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `ospos_employees` (`person_id`), ADD CONSTRAINT `ospos_sales_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `ospos_customers` (`person_id`), ADD CONSTRAINT `ospos_sales_ibfk_3` FOREIGN KEY (`dinner_table_id`) REFERENCES `ospos_dinner_tables` (`dinner_table_id`); -- -- Constraints for table `ospos_sales_items` -- ALTER TABLE `ospos_sales_items` ADD CONSTRAINT `ospos_sales_items_ibfk_1` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`), ADD CONSTRAINT `ospos_sales_items_ibfk_2` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales` (`sale_id`), ADD CONSTRAINT `ospos_sales_items_ibfk_3` FOREIGN KEY (`item_location`) REFERENCES `ospos_stock_locations` (`location_id`); -- -- Constraints for table `ospos_sales_items_taxes` -- ALTER TABLE `ospos_sales_items_taxes` ADD CONSTRAINT `ospos_sales_items_taxes_ibfk_1` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales_items` (`sale_id`), ADD CONSTRAINT `ospos_sales_items_taxes_ibfk_2` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`); -- -- Constraints for table `ospos_sales_payments` -- ALTER TABLE `ospos_sales_payments` ADD CONSTRAINT `ospos_sales_payments_ibfk_1` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales` (`sale_id`); -- -- Constraints for table `ospos_sales_reward_points` -- ALTER TABLE `ospos_sales_reward_points` ADD CONSTRAINT `ospos_sales_reward_points_ibfk_1` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales` (`sale_id`); -- -- Constraints for table `ospos_suppliers` -- ALTER TABLE `ospos_suppliers` ADD CONSTRAINT `ospos_suppliers_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `ospos_people` (`person_id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;