X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sql%2Fen_US-demo.sql;h=92bfe4ade3edb8fdbe3b4f5dc846ad1cbe996a3b;hb=c1f7794c267b3af334843af0bb025144287f8829;hp=439138c8cfcb6ba646df546381b4f00e4590d13a;hpb=7705a766b36239b2622c1b269292ec6e12f2ca09;p=fa-stable.git diff --git a/sql/en_US-demo.sql b/sql/en_US-demo.sql index 439138c8..92bfe4ad 100644 --- a/sql/en_US-demo.sql +++ b/sql/en_US-demo.sql @@ -698,7 +698,7 @@ CREATE TABLE IF NOT EXISTS `0_debtor_trans` ( `trans_no` int(11) unsigned NOT NULL DEFAULT '0', `type` smallint(6) unsigned NOT NULL DEFAULT '0', `version` tinyint(1) unsigned NOT NULL DEFAULT '0', - `debtor_no` int(11) unsigned DEFAULT NULL, + `debtor_no` int(11) unsigned NOT NULL, `branch_code` int(11) NOT NULL DEFAULT '-1', `tran_date` date NOT NULL DEFAULT '0000-00-00', `due_date` date NOT NULL DEFAULT '0000-00-00', @@ -718,7 +718,7 @@ CREATE TABLE IF NOT EXISTS `0_debtor_trans` ( `dimension2_id` int(11) NOT NULL DEFAULT '0', `payment_terms` int(11) DEFAULT NULL, `tax_included` tinyint(1) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`type`,`trans_no`), + PRIMARY KEY (`type`,`trans_no`,`debtor_no`), KEY `debtor_no` (`debtor_no`,`branch_code`), KEY `tran_date` (`tran_date`), KEY `order_` (`order_`) @@ -851,7 +851,7 @@ CREATE TABLE IF NOT EXISTS `0_fiscal_year` ( PRIMARY KEY (`id`), UNIQUE KEY `begin` (`begin`), UNIQUE KEY `end` (`end`) -) ENGINE=InnoDB AUTO_INCREMENT=3 ; +) ENGINE=InnoDB AUTO_INCREMENT=2 ; -- -- Dumping data for table `0_fiscal_year` @@ -2058,7 +2058,7 @@ DROP TABLE IF EXISTS `0_supp_trans`; CREATE TABLE IF NOT EXISTS `0_supp_trans` ( `trans_no` int(11) unsigned NOT NULL DEFAULT '0', `type` smallint(6) unsigned NOT NULL DEFAULT '0', - `supplier_id` int(11) unsigned DEFAULT NULL, + `supplier_id` int(11) unsigned NOT NULL, `reference` tinytext NOT NULL, `supp_reference` varchar(60) NOT NULL DEFAULT '', `tran_date` date NOT NULL DEFAULT '0000-00-00', @@ -2069,7 +2069,7 @@ CREATE TABLE IF NOT EXISTS `0_supp_trans` ( `rate` double NOT NULL DEFAULT '1', `alloc` double NOT NULL DEFAULT '0', `tax_included` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`type`,`trans_no`), + PRIMARY KEY (`type`,`trans_no`,`supplier_id`), KEY `supplier_id` (`supplier_id`), KEY `tran_date` (`tran_date`) ) ENGINE=InnoDB; @@ -2116,6 +2116,7 @@ INSERT INTO `0_sys_prefs` VALUES ('domicile', 'setup.company', 'varchar', 55, '' INSERT INTO `0_sys_prefs` VALUES ('curr_default', 'setup.company', 'char', 3, 'USD'); INSERT INTO `0_sys_prefs` VALUES ('use_dimension', 'setup.company', 'tinyint', 1, '1'); INSERT INTO `0_sys_prefs` VALUES ('f_year', 'setup.company', 'int', 11, '1'); +INSERT INTO `0_sys_prefs` VALUES ('shortname_name_in_list','setup.company', 'tinyint', 1, '0'); INSERT INTO `0_sys_prefs` VALUES ('no_item_list', 'setup.company', 'tinyint', 1, '0'); INSERT INTO `0_sys_prefs` VALUES ('no_customer_list', 'setup.company', 'tinyint', 1, '0'); INSERT INTO `0_sys_prefs` VALUES ('no_supplier_list', 'setup.company', 'tinyint', 1, '0'); @@ -2168,6 +2169,8 @@ INSERT INTO `0_sys_prefs` VALUES ('print_invoice_no','glsetup.sales', 'tinyint', INSERT INTO `0_sys_prefs` VALUES ('allow_negative_prices','glsetup.inventory', 'tinyint', 1, '1'); INSERT INTO `0_sys_prefs` VALUES ('print_item_images_on_quote','glsetup.inventory', 'tinyint', 1, '0'); INSERT INTO `0_sys_prefs` VALUES ('suppress_tax_rates','setup.company', 'tinyint', 1, '0'); +INSERT INTO `0_sys_prefs` VALUES ('company_logo_report','setup.company', 'tinyint', 1, '0'); +INSERT INTO `0_sys_prefs` VALUES ('barcodes_on_stock','setup.company', 'tinyint', 1, '0'); INSERT INTO `0_sys_prefs` VALUES ('default_loss_on_asset_disposal_act', 'glsetup.items', 'varchar', '15', '5660'); INSERT INTO `0_sys_prefs` VALUES ('depreciation_period', 'glsetup.company', 'tinyint', '1', '1'); INSERT INTO `0_sys_prefs` VALUES ('use_manufacturing','setup.company', 'tinyint', 1, '1');