X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sql%2Fen_US-new.sql;h=b025189a685689c9c5afea160d2aceb9f686c7fb;hb=317210096efdbe5b375d5a0112d4f10a3c3c0b53;hp=2276c338ed6446037e0334300135c18bad01f9fd;hpb=c428c827fef8156052be0e430be9af738536e3b0;p=fa-stable.git diff --git a/sql/en_US-new.sql b/sql/en_US-new.sql index 2276c338..b025189a 100644 --- a/sql/en_US-new.sql +++ b/sql/en_US-new.sql @@ -257,6 +257,7 @@ INSERT INTO `0_chart_master` VALUES ('1825', '', 'Accum. Amort. -Furn. & Equ INSERT INTO `0_chart_master` VALUES ('1840', '', 'Vehicle', '3', 0); INSERT INTO `0_chart_master` VALUES ('1845', '', 'Accum. Amort. -Vehicle', '3', 0); INSERT INTO `0_chart_master` VALUES ('2100', '', 'Accounts Payable', '4', 0); +INSERT INTO `0_chart_master` VALUES ('2105', '', 'Deferred Income', '4', 0); INSERT INTO `0_chart_master` VALUES ('2110', '', 'Accrued Income Tax - Federal', '4', 0); INSERT INTO `0_chart_master` VALUES ('2120', '', 'Accrued Income Tax - State', '4', 0); INSERT INTO `0_chart_master` VALUES ('2130', '', 'Accrued Franchise Tax', '4', 0); @@ -446,7 +447,7 @@ INSERT INTO `0_crm_categories` VALUES (12, 'supplier', 'invoice', 'Invoices', 'I DROP TABLE IF EXISTS `0_crm_contacts`; CREATE TABLE IF NOT EXISTS `0_crm_contacts` ( `id` int(11) NOT NULL auto_increment, - `person_id` int(11) NOT NULL default '0' COMMENT 'foreign key to crm_contacts', + `person_id` int(11) NOT NULL default '0' COMMENT 'foreign key to crm_persons', `type` varchar(20) NOT NULL COMMENT 'foreign key to crm_categories', `action` varchar(20) NOT NULL COMMENT 'foreign key to crm_categories', `entity_id` varchar(11) default NULL COMMENT 'entity id in related class table', @@ -619,7 +620,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', @@ -746,7 +747,7 @@ CREATE TABLE IF NOT EXISTS `0_fiscal_year` ( -- Dumping data for table `0_fiscal_year` -- -INSERT INTO `0_fiscal_year` VALUES (1, '2016-01-01', '2016-12-31', 0); +INSERT INTO `0_fiscal_year` VALUES (1, '2018-01-01', '2018-12-31', 0); -- -------------------------------------------------------- @@ -1033,6 +1034,7 @@ INSERT INTO `0_payment_terms` VALUES (1, 'Due 15th Of the Following Month', 0, 1 INSERT INTO `0_payment_terms` VALUES (2, 'Due By End Of The Following Month', 0, 30, 0); INSERT INTO `0_payment_terms` VALUES (3, 'Payment due within 10 days', 10, 0, 0); INSERT INTO `0_payment_terms` VALUES (4, 'Cash Only', 0, 0, 0); +INSERT INTO `0_payment_terms` VALUES (5, 'Prepaid', -1, 0, 0); -- -------------------------------------------------------- @@ -1785,7 +1787,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', @@ -1882,7 +1884,7 @@ INSERT INTO `0_sys_prefs` VALUES ('version_id', 'system', 'varchar', 11, '2.4.1' INSERT INTO `0_sys_prefs` VALUES ('auto_curr_reval', 'setup.company', 'smallint', 6, '1'); INSERT INTO `0_sys_prefs` VALUES ('grn_clearing_act', 'glsetup.purchase', 'varchar', 15, '1550'); INSERT INTO `0_sys_prefs` VALUES ('bcc_email', 'setup.company', 'varchar', 100, ''); -INSERT INTO `0_sys_prefs` VALUES ('deferred_income_act', 'glsetup.sales', 'varchar', '15', ''); +INSERT INTO `0_sys_prefs` VALUES ('deferred_income_act', 'glsetup.sales', 'varchar', '15', '2105'); INSERT INTO `0_sys_prefs` VALUES ('gl_closing_date','setup.closing_date', 'date', 8, ''); INSERT INTO `0_sys_prefs` VALUES ('alternative_tax_include_on_docs','setup.company', 'tinyint', 1, '0'); INSERT INTO `0_sys_prefs` VALUES ('no_zero_lines_amount','glsetup.sales', 'tinyint', 1, '1'); @@ -1894,6 +1896,8 @@ INSERT INTO `0_sys_prefs` VALUES ('allow_negative_prices','glsetup.inventory', ' 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 ('ref_no_auto_increase','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');