Small bug/layout fixes
[fa-stable.git] / sql / en_US-new.sql
1 # Built by FrontAccounting 2.1.2
2 # http://frontaccounting.net
3 # Company: Company name
4 # User: Administrator
5 # COA: en_US-new.sql
6
7
8 ### Structure of table `0_areas` ###
9
10 DROP TABLE IF EXISTS `0_areas`;
11
12 CREATE TABLE `0_areas` (
13   `area_code` int(11) NOT NULL auto_increment,
14   `description` varchar(60) NOT NULL default '',
15   `inactive` tinyint(1) NOT NULL default '0',
16   PRIMARY KEY  (`area_code`),
17   UNIQUE KEY `description` (`description`)
18 ) TYPE=MyISAM AUTO_INCREMENT=2 ;
19
20
21 ### Data of table `0_areas` ###
22
23 INSERT INTO `0_areas` VALUES ('1', 'Global', '0');
24
25 ### Structure of table `0_attachments` ###
26
27 DROP TABLE IF EXISTS `0_attachments`;
28
29 CREATE TABLE `0_attachments` (
30   `id` int(11) unsigned NOT NULL auto_increment,
31   `description` varchar(60) NOT NULL default '',
32   `type_no` int(11) NOT NULL default '0',
33   `trans_no` int(11) NOT NULL default '0',
34   `unique_name` varchar(60) NOT NULL default '',
35   `tran_date` date NOT NULL default '0000-00-00',
36   `filename` varchar(60) NOT NULL default '',
37   `filesize` int(11) NOT NULL default '0',
38   `filetype` varchar(60) NOT NULL default '',
39   PRIMARY KEY  (`id`),
40   KEY `type_no` (`type_no`,`trans_no`)
41 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
42
43
44 ### Data of table `0_attachments` ###
45
46 ### Structure of table `0_audit_trail` ###
47
48 DROP TABLE IF EXISTS `0_audit_trail`;
49
50 CREATE TABLE `0_audit_trail` (
51   `id` int(11) NOT NULL AUTO_INCREMENT,
52   `type` smallint(6) unsigned NOT NULL default '0',
53   `trans_no` int(11) unsigned NOT NULL default '0',
54   `user` smallint(6) unsigned NOT NULL default '0',
55   `stamp` timestamp NOT NULL,
56   `description` varchar(60) default NULL,
57   `fiscal_year` int(11) NOT NULL,
58   `gl_date` date NOT NULL default '0000-00-00',
59   `gl_seq` int(11) unsigned default NULL,
60    PRIMARY KEY (`id`),
61   KEY (`fiscal_year`, `gl_seq`)
62 ) TYPE=InnoDB  ;
63
64 ### Data of table `0_audit_trail` ###
65
66
67
68 ### Structure of table `0_bank_accounts` ###
69
70 DROP TABLE IF EXISTS `0_bank_accounts`;
71
72 CREATE TABLE `0_bank_accounts` (
73   `account_code` varchar(11) NOT NULL default '',
74   `account_type` smallint(6) NOT NULL default '0',
75   `bank_account_name` varchar(60) NOT NULL default '',
76   `bank_account_number` varchar(100) NOT NULL default '',
77   `bank_name` varchar(60) NOT NULL default '',
78   `bank_address` tinytext,
79   `bank_curr_code` char(3) NOT NULL default '',
80   `id` smallint(6) NOT NULL auto_increment,
81   `last_reconciled_date` timestamp NOT NULL default '0000-00-00 00:00:00',
82   `ending_reconcile_balance` double NOT NULL default '0',
83   `inactive` tinyint(1) NOT NULL default '0',
84   PRIMARY KEY  (`id`),
85   KEY `bank_account_name` (`bank_account_name`),
86   KEY `bank_account_number` (`bank_account_number`)
87 ) TYPE=MyISAM AUTO_INCREMENT=3 ;
88
89
90 ### Data of table `0_bank_accounts` ###
91
92 INSERT INTO `0_bank_accounts` VALUES ('1060', '0', 'Current account', 'N/A', 'N/A', '', 'USD', '1', '0000-00-00 00:00:00', '0', '0');
93 INSERT INTO `0_bank_accounts` VALUES ('1065', '3', 'Petty Cash account', 'N/A', 'N/A', '', 'USD', '2', '0000-00-00 00:00:00', '0', '0');
94
95
96 ### Structure of table `0_bank_trans` ###
97
98 DROP TABLE IF EXISTS `0_bank_trans`;
99
100 CREATE TABLE `0_bank_trans` (
101   `id` int(11) NOT NULL auto_increment,
102   `type` smallint(6) default NULL,
103   `trans_no` int(11) default NULL,
104   `bank_act` varchar(11) default NULL,
105   `ref` varchar(40) default NULL,
106   `trans_date` date NOT NULL default '0000-00-00',
107   `bank_trans_type_id` int(10) unsigned default NULL,
108   `amount` double default NULL,
109   `dimension_id` int(11) NOT NULL default '0',
110   `dimension2_id` int(11) NOT NULL default '0',
111   `person_type_id` int(11) NOT NULL default '0',
112   `person_id` tinyblob,
113   `reconciled` date default NULL,
114   PRIMARY KEY  (`id`),
115   KEY `bank_act` (`bank_act`,`ref`),
116   KEY `type` (`type`,`trans_no`)
117 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
118
119
120 ### Data of table `0_bank_trans` ###
121
122
123
124 ### Structure of table `0_bom` ###
125
126 DROP TABLE IF EXISTS `0_bom`;
127
128 CREATE TABLE `0_bom` (
129   `id` int(11) NOT NULL auto_increment,
130   `parent` char(20) NOT NULL default '',
131   `component` char(20) NOT NULL default '',
132   `workcentre_added` int(11) NOT NULL default '0',
133   `loc_code` char(5) NOT NULL default '',
134   `quantity` double NOT NULL default '1',
135   PRIMARY KEY  (`parent`,`component`,`workcentre_added`,`loc_code`),
136   KEY `component` (`component`),
137   KEY `id` (`id`),
138   KEY `loc_code` (`loc_code`),
139   KEY `parent` (`parent`,`loc_code`),
140   KEY `Parent_2` (`parent`),
141   KEY `workcentre_added` (`workcentre_added`)
142 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
143
144
145 ### Data of table `0_bom` ###
146
147
148
149 ### Structure of table `0_budget_trans` ###
150
151 DROP TABLE IF EXISTS `0_budget_trans`;
152
153 CREATE TABLE `0_budget_trans` (
154   `counter` int(11) NOT NULL auto_increment,
155   `type` smallint(6) NOT NULL default '0',
156   `type_no` bigint(16) NOT NULL default '1',
157   `tran_date` date NOT NULL default '0000-00-00',
158   `account` varchar(11) NOT NULL default '',
159   `memo_` tinytext NOT NULL,
160   `amount` double NOT NULL default '0',
161   `dimension_id` int(11) default '0',
162   `dimension2_id` int(11) default '0',
163   `person_type_id` int(11) default NULL,
164   `person_id` tinyblob,
165   PRIMARY KEY  (`counter`),
166   KEY `Type_and_Number` (`type`,`type_no`)
167 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
168
169
170 ### Data of table `0_budget_trans` ###
171
172
173
174 ### Structure of table `0_chart_class` ###
175
176 DROP TABLE IF EXISTS `0_chart_class`;
177
178 CREATE TABLE `0_chart_class` (
179   `cid` int(11) NOT NULL default '0',
180   `class_name` varchar(60) NOT NULL default '',
181   `ctype` tinyint(1) NOT NULL default '0',
182   `inactive` tinyint(1) NOT NULL default '0',
183   PRIMARY KEY  (`cid`)
184 ) TYPE=MyISAM  ;
185
186
187 ### Data of table `0_chart_class` ###
188
189 INSERT INTO `0_chart_class` VALUES ('1', 'Assets', '1', '0');
190 INSERT INTO `0_chart_class` VALUES ('2', 'Liabilities', '2', '0');
191 INSERT INTO `0_chart_class` VALUES ('3', 'Income', '4', '0');
192 INSERT INTO `0_chart_class` VALUES ('4', 'Costs', '6', '0');
193
194 ### Structure of table `0_chart_master` ###
195
196 DROP TABLE IF EXISTS `0_chart_master`;
197
198 CREATE TABLE `0_chart_master` (
199   `account_code` varchar(11) NOT NULL default '',
200   `account_code2` varchar(11) default '',
201   `account_name` varchar(60) NOT NULL default '',
202   `account_type` int(11) NOT NULL default '0',
203   `inactive` tinyint(1) NOT NULL default '0',
204   PRIMARY KEY  (`account_code`),
205   KEY `account_code` (`account_code`),
206   KEY `account_name` (`account_name`)
207 ) TYPE=MyISAM  ;
208
209
210 ### Data of table `0_chart_master` ###
211
212 INSERT INTO `0_chart_master` VALUES ('1060', '', 'Checking Account', '1', '0');
213 INSERT INTO `0_chart_master` VALUES ('1065', '', 'Petty Cash', '1', '0');
214 INSERT INTO `0_chart_master` VALUES ('1200', '', 'Accounts Receivables', '1', '0');
215 INSERT INTO `0_chart_master` VALUES ('1205', '', 'Allowance for doubtful accounts', '1', '0');
216 INSERT INTO `0_chart_master` VALUES ('1510', '', 'Inventory', '2', '0');
217 INSERT INTO `0_chart_master` VALUES ('1520', '', 'Stocks of Raw Materials', '2', '0');
218 INSERT INTO `0_chart_master` VALUES ('1530', '', 'Stocks of Work In Progress', '2', '0');
219 INSERT INTO `0_chart_master` VALUES ('1540', '', 'Stocks of Finsihed Goods', '2', '0');
220 INSERT INTO `0_chart_master` VALUES ('1550', '', 'Goods Received Clearing account', '2', '0');
221 INSERT INTO `0_chart_master` VALUES ('1820', '', 'Office Furniture & Equipment', '3', '0');
222 INSERT INTO `0_chart_master` VALUES ('1825', '', 'Accum. Amort. -Furn. & Equip.', '3', '0');
223 INSERT INTO `0_chart_master` VALUES ('1840', '', 'Vehicle', '3', '0');
224 INSERT INTO `0_chart_master` VALUES ('1845', '', 'Accum. Amort. -Vehicle', '3', '0');
225 INSERT INTO `0_chart_master` VALUES ('2100', '', 'Accounts Payable', '4', '0');
226 INSERT INTO `0_chart_master` VALUES ('2110', '', 'Accrued Income Tax - Federal', '4', '0');
227 INSERT INTO `0_chart_master` VALUES ('2120', '', 'Accrued Income Tax - State', '4', '0');
228 INSERT INTO `0_chart_master` VALUES ('2130', '', 'Accrued Franchise Tax', '4', '0');
229 INSERT INTO `0_chart_master` VALUES ('2140', '', 'Accrued Real & Personal Prop Tax', '4', '0');
230 INSERT INTO `0_chart_master` VALUES ('2150', '', 'Sales Tax', '4', '0');
231 INSERT INTO `0_chart_master` VALUES ('2160', '', 'Accrued Use Tax Payable', '4', '0');
232 INSERT INTO `0_chart_master` VALUES ('2210', '', 'Accrued Wages', '4', '0');
233 INSERT INTO `0_chart_master` VALUES ('2220', '', 'Accrued Comp Time', '4', '0');
234 INSERT INTO `0_chart_master` VALUES ('2230', '', 'Accrued Holiday Pay', '4', '0');
235 INSERT INTO `0_chart_master` VALUES ('2240', '', 'Accrued Vacation Pay', '4', '0');
236 INSERT INTO `0_chart_master` VALUES ('2310', '', 'Accr. Benefits - 401K', '4', '0');
237 INSERT INTO `0_chart_master` VALUES ('2320', '', 'Accr. Benefits - Stock Purchase', '4', '0');
238 INSERT INTO `0_chart_master` VALUES ('2330', '', 'Accr. Benefits - Med, Den', '4', '0');
239 INSERT INTO `0_chart_master` VALUES ('2340', '', 'Accr. Benefits - Payroll Taxes', '4', '0');
240 INSERT INTO `0_chart_master` VALUES ('2350', '', 'Accr. Benefits - Credit Union', '4', '0');
241 INSERT INTO `0_chart_master` VALUES ('2360', '', 'Accr. Benefits - Savings Bond', '4', '0');
242 INSERT INTO `0_chart_master` VALUES ('2370', '', 'Accr. Benefits - Garnish', '4', '0');
243 INSERT INTO `0_chart_master` VALUES ('2380', '', 'Accr. Benefits - Charity Cont.', '4', '0');
244 INSERT INTO `0_chart_master` VALUES ('2620', '', 'Bank Loans', '5', '0');
245 INSERT INTO `0_chart_master` VALUES ('2680', '', 'Loans from Shareholders', '5', '0');
246 INSERT INTO `0_chart_master` VALUES ('3350', '', 'Common Shares', '6', '0');
247 INSERT INTO `0_chart_master` VALUES ('3590', '', 'Retained Earnings - prior years', '7', '0');
248 INSERT INTO `0_chart_master` VALUES ('4010', '', 'Sales', '8', '0');
249 INSERT INTO `0_chart_master` VALUES ('4430', '', 'Shipping & Handling', '9', '0');
250 INSERT INTO `0_chart_master` VALUES ('4440', '', 'Interest', '9', '0');
251 INSERT INTO `0_chart_master` VALUES ('4450', '', 'Foreign Exchange Gain', '9', '0');
252 INSERT INTO `0_chart_master` VALUES ('4500', '', 'Prompt Payment Discounts', '9', '0');
253 INSERT INTO `0_chart_master` VALUES ('4510', '', 'Discounts Given', '9', '0');
254 INSERT INTO `0_chart_master` VALUES ('5010', '', 'Cost of Goods Sold - Retail', '10', '0');
255 INSERT INTO `0_chart_master` VALUES ('5020', '', 'Material Usage Varaiance', '10', '0');
256 INSERT INTO `0_chart_master` VALUES ('5030', '', 'Consumable Materials', '10', '0');
257 INSERT INTO `0_chart_master` VALUES ('5040', '', 'Purchase price Variance', '10', '0');
258 INSERT INTO `0_chart_master` VALUES ('5050', '', 'Purchases of materials', '10', '0');
259 INSERT INTO `0_chart_master` VALUES ('5060', '', 'Discounts Received', '10', '0');
260 INSERT INTO `0_chart_master` VALUES ('5100', '', 'Freight', '10', '0');
261 INSERT INTO `0_chart_master` VALUES ('5410', '', 'Wages & Salaries', '11', '0');
262 INSERT INTO `0_chart_master` VALUES ('5420', '', 'Wages - Overtime', '11', '0');
263 INSERT INTO `0_chart_master` VALUES ('5430', '', 'Benefits - Comp Time', '11', '0');
264 INSERT INTO `0_chart_master` VALUES ('5440', '', 'Benefits - Payroll Taxes', '11', '0');
265 INSERT INTO `0_chart_master` VALUES ('5450', '', 'Benefits - Workers Comp', '11', '0');
266 INSERT INTO `0_chart_master` VALUES ('5460', '', 'Benefits - Pension', '11', '0');
267 INSERT INTO `0_chart_master` VALUES ('5470', '', 'Benefits - General Benefits', '11', '0');
268 INSERT INTO `0_chart_master` VALUES ('5510', '', 'Inc Tax Exp - Federal', '11', '0');
269 INSERT INTO `0_chart_master` VALUES ('5520', '', 'Inc Tax Exp - State', '11', '0');
270 INSERT INTO `0_chart_master` VALUES ('5530', '', 'Taxes - Real Estate', '11', '0');
271 INSERT INTO `0_chart_master` VALUES ('5540', '', 'Taxes - Personal Property', '11', '0');
272 INSERT INTO `0_chart_master` VALUES ('5550', '', 'Taxes - Franchise', '11', '0');
273 INSERT INTO `0_chart_master` VALUES ('5560', '', 'Taxes - Foreign Withholding', '11', '0');
274 INSERT INTO `0_chart_master` VALUES ('5610', '', 'Accounting & Legal', '12', '0');
275 INSERT INTO `0_chart_master` VALUES ('5615', '', 'Advertising & Promotions', '12', '0');
276 INSERT INTO `0_chart_master` VALUES ('5620', '', 'Bad Debts', '12', '0');
277 INSERT INTO `0_chart_master` VALUES ('5660', '', 'Amortization Expense', '12', '0');
278 INSERT INTO `0_chart_master` VALUES ('5685', '', 'Insurance', '12', '0');
279 INSERT INTO `0_chart_master` VALUES ('5690', '', 'Interest & Bank Charges', '12', '0');
280 INSERT INTO `0_chart_master` VALUES ('5700', '', 'Office Supplies', '12', '0');
281 INSERT INTO `0_chart_master` VALUES ('5760', '', 'Rent', '12', '0');
282 INSERT INTO `0_chart_master` VALUES ('5765', '', 'Repair & Maintenance', '12', '0');
283 INSERT INTO `0_chart_master` VALUES ('5780', '', 'Telephone', '12', '0');
284 INSERT INTO `0_chart_master` VALUES ('5785', '', 'Travel & Entertainment', '12', '0');
285 INSERT INTO `0_chart_master` VALUES ('5790', '', 'Utilities', '12', '0');
286 INSERT INTO `0_chart_master` VALUES ('5795', '', 'Registrations', '12', '0');
287 INSERT INTO `0_chart_master` VALUES ('5800', '', 'Licenses', '12', '0');
288 INSERT INTO `0_chart_master` VALUES ('5810', '', 'Foreign Exchange Loss', '12', '0');
289 INSERT INTO `0_chart_master` VALUES ('9990', '', 'Year Profit/Loss', '12', '0');
290
291
292 ### Structure of table `0_chart_types` ###
293
294 DROP TABLE IF EXISTS `0_chart_types`;
295
296 CREATE TABLE `0_chart_types` (
297   `id` int(11) NOT NULL auto_increment,
298   `name` varchar(60) NOT NULL default '',
299   `class_id` tinyint(1) NOT NULL default '0',
300   `parent` int(11) NOT NULL default '-1',
301   `inactive` tinyint(1) NOT NULL default '0',
302   PRIMARY KEY  (`id`),
303   KEY `name` (`name`)
304 ) TYPE=MyISAM AUTO_INCREMENT=13 ;
305
306
307 ### Data of table `0_chart_types` ###
308
309 INSERT INTO `0_chart_types` VALUES ('1', 'Current Assets', '1', '-1', '0');
310 INSERT INTO `0_chart_types` VALUES ('2', 'Inventory Assets', '1', '-1', '0');
311 INSERT INTO `0_chart_types` VALUES ('3', 'Capital Assets', '1', '-1', '0');
312 INSERT INTO `0_chart_types` VALUES ('4', 'Current Liabilities', '2', '-1', '0');
313 INSERT INTO `0_chart_types` VALUES ('5', 'Long Term Liabilities', '2', '-1', '0');
314 INSERT INTO `0_chart_types` VALUES ('6', 'Share Capital', '2', '-1', '0');
315 INSERT INTO `0_chart_types` VALUES ('7', 'Retained Earnings', '2', '-1', '0');
316 INSERT INTO `0_chart_types` VALUES ('8', 'Sales Revenue', '3', '-1', '0');
317 INSERT INTO `0_chart_types` VALUES ('9', 'Other Revenue', '3', '-1', '0');
318 INSERT INTO `0_chart_types` VALUES ('10', 'Cost of Goods Sold', '4', '-1', '0');
319 INSERT INTO `0_chart_types` VALUES ('11', 'Payroll Expenses', '4', '-1', '0');
320 INSERT INTO `0_chart_types` VALUES ('12', 'General & Administrative expenses', '4', -1, '0');
321
322
323 ### Structure of table `0_comments` ###
324
325 DROP TABLE IF EXISTS `0_comments`;
326
327 CREATE TABLE `0_comments` (
328   `type` int(11) NOT NULL default '0',
329   `id` int(11) NOT NULL default '0',
330   `date_` date default '0000-00-00',
331   `memo_` tinytext
332 ) TYPE=InnoDB  ;
333
334
335 ### Data of table `0_comments` ###
336
337
338
339 ### Structure of table `0_company` ###
340
341 DROP TABLE IF EXISTS `0_company`;
342
343 CREATE TABLE `0_company` (
344   `coy_code` int(11) NOT NULL default '1',
345   `coy_name` varchar(60) NOT NULL default '',
346   `gst_no` varchar(25) NOT NULL default '',
347   `coy_no` varchar(25) NOT NULL default '0',
348   `tax_prd` int(11) NOT NULL default '1',
349   `tax_last` int(11) NOT NULL default '1',
350   `postal_address` tinytext NOT NULL,
351   `phone` varchar(30) NOT NULL default '',
352   `fax` varchar(30) NOT NULL default '',
353   `email` varchar(100) NOT NULL default '',
354   `coy_logo` varchar(100) NOT NULL default '',
355   `domicile` varchar(55) NOT NULL default '',
356   `curr_default` char(3) NOT NULL default '',
357   `debtors_act` varchar(11) NOT NULL default '',
358   `pyt_discount_act` varchar(11) NOT NULL default '',
359   `creditors_act` varchar(11) NOT NULL default '',
360   `bank_charge_act` varchar(11) NOT NULL default '',
361   `exchange_diff_act` varchar(11) NOT NULL default '',
362   `profit_loss_year_act` varchar(11) NOT NULL default '',
363   `retained_earnings_act` varchar(11) NOT NULL default '',
364   `freight_act` varchar(11) NOT NULL default '',
365   `default_sales_act` varchar(11) NOT NULL default '',
366   `default_sales_discount_act` varchar(11) NOT NULL default '',
367   `default_prompt_payment_act` varchar(11) NOT NULL default '',
368   `default_inventory_act` varchar(11) NOT NULL default '',
369   `default_cogs_act` varchar(11) NOT NULL default '',
370   `default_adj_act` varchar(11) NOT NULL default '',
371   `default_inv_sales_act` varchar(11) NOT NULL default '',
372   `default_assembly_act` varchar(11) NOT NULL default '',
373   `payroll_act` varchar(11) NOT NULL default '',
374   `allow_negative_stock` tinyint(1) NOT NULL default '0',
375   `po_over_receive` int(11) NOT NULL default '10',
376   `po_over_charge` int(11) NOT NULL default '10',
377   `default_credit_limit` int(11) NOT NULL default '1000',
378   `default_workorder_required` int(11) NOT NULL default '20',
379   `default_dim_required` int(11) NOT NULL default '20',
380   `past_due_days` int(11) NOT NULL default '30',
381   `use_dimension` tinyint(1) default '0',
382   `f_year` int(11) NOT NULL default '1',
383   `no_item_list` tinyint(1) NOT NULL default '0',
384   `no_customer_list` tinyint(1) NOT NULL default '0',
385   `no_supplier_list` tinyint(1) NOT NULL default '0',
386   `base_sales` int(11) NOT NULL default '-1',
387   `foreign_codes` tinyint(1) NOT NULL default '0',
388   `accumulate_shipping` tinyint(1) NOT NULL default '0',
389   `legal_text` tinytext NOT NULL,
390   `default_delivery_required` smallint(6) NOT NULL default '1',
391   `version_id` varchar(11) NOT NULL default '',
392   `time_zone` tinyint(1) NOT NULL default '0',
393   `add_pct` int(5) NOT NULL default '-1',
394   `round_to` int(5) NOT NULL default '1',
395   PRIMARY KEY  (`coy_code`)
396 ) TYPE=MyISAM  ;
397
398
399 ### Data of table `0_company` ###
400
401 INSERT INTO `0_company` VALUES ('1', 'Company name', '', '', '1', '1', 'N/A', '', '', '', '', '', 'USD', '1200', '5060', '2100', '5690', '4450', '9990', '3590', '4430', '4010', '4510', '4500', '1510', '5010', '5040', '4010', '1530', '5000', '0', '10', '10', '1000', '20', '20', '30', '1', '1', '0', '0', '0', '1', '0', '0', '', '1', '2.2', '0', '-1', '1');
402
403 ### Structure of table `0_credit_status` ###
404
405 DROP TABLE IF EXISTS `0_credit_status`;
406
407 CREATE TABLE `0_credit_status` (
408   `id` int(11) NOT NULL auto_increment,
409   `reason_description` char(100) NOT NULL default '',
410   `dissallow_invoices` tinyint(1) NOT NULL default '0',
411   `inactive` tinyint(1) NOT NULL default '0',
412   PRIMARY KEY  (`id`),
413   UNIQUE KEY `reason_description` (`reason_description`)
414 ) TYPE=MyISAM AUTO_INCREMENT=5 ;
415
416
417 ### Data of table `0_credit_status` ###
418
419 INSERT INTO `0_credit_status` VALUES ('1', 'Good History', '0', '0');
420 INSERT INTO `0_credit_status` VALUES ('3', 'No more work until payment received', '1', '0');
421 INSERT INTO `0_credit_status` VALUES ('4', 'In liquidation', '1', '0');
422
423
424 ### Structure of table `0_currencies` ###
425
426 DROP TABLE IF EXISTS `0_currencies`;
427
428 CREATE TABLE `0_currencies` (
429   `currency` varchar(60) NOT NULL default '',
430   `curr_abrev` char(3) NOT NULL default '',
431   `curr_symbol` varchar(10) NOT NULL default '',
432   `country` varchar(100) NOT NULL default '',
433   `hundreds_name` varchar(15) NOT NULL default '',
434   `auto_update` tinyint(1) NOT NULL default '1',
435   `inactive` tinyint(1) NOT NULL default '0',
436   PRIMARY KEY  (`curr_abrev`)
437 ) TYPE=MyISAM  ;
438
439
440 ### Data of table `0_currencies` ###
441
442 INSERT INTO `0_currencies` VALUES ('US Dollars', 'USD', '$', 'United States', 'Cents', '1', '0');
443 INSERT INTO `0_currencies` VALUES ('CA Dollars', 'CAD', '$', 'Canada', 'Cents', '1', '0');
444 INSERT INTO `0_currencies` VALUES ('Euro', 'EUR', '?', 'Europe', 'Cents', '1', '0');
445 INSERT INTO `0_currencies` VALUES ('Pounds', 'GBP', '?', 'England', 'Pence', '1', '0');
446
447 ### Structure of table `0_cust_allocations` ###
448
449 DROP TABLE IF EXISTS `0_cust_allocations`;
450
451 CREATE TABLE `0_cust_allocations` (
452   `id` int(11) NOT NULL auto_increment,
453   `amt` double unsigned default NULL,
454   `date_alloc` date NOT NULL default '0000-00-00',
455   `trans_no_from` int(11) default NULL,
456   `trans_type_from` int(11) default NULL,
457   `trans_no_to` int(11) default NULL,
458   `trans_type_to` int(11) default NULL,
459   PRIMARY KEY  (`id`)
460 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
461
462
463 ### Data of table `0_cust_allocations` ###
464
465
466
467 ### Structure of table `0_cust_branch` ###
468
469 DROP TABLE IF EXISTS `0_cust_branch`;
470
471 CREATE TABLE `0_cust_branch` (
472   `branch_code` int(11) NOT NULL auto_increment,
473   `debtor_no` int(11) NOT NULL default '0',
474   `br_name` varchar(60) NOT NULL default '',
475   `br_address` tinytext NOT NULL,
476   `area` int(11) default NULL,
477   `salesman` int(11) NOT NULL default '0',
478   `phone` varchar(30) NOT NULL default '',
479   `fax` varchar(30) NOT NULL default '',
480   `contact_name` varchar(60) NOT NULL default '',
481   `email` varchar(100) NOT NULL default '',
482   `default_location` varchar(5) NOT NULL default '',
483   `tax_group_id` int(11) default NULL,
484   `sales_account` varchar(11) default NULL,
485   `sales_discount_account` varchar(11) default NULL,
486   `receivables_account` varchar(11) default NULL,
487   `payment_discount_account` varchar(11) default NULL,
488   `default_ship_via` int(11) NOT NULL default '1',
489   `disable_trans` tinyint(4) NOT NULL default '0',
490   `br_post_address` tinytext NOT NULL,
491   `group_no` int(11) NOT NULL default '0',
492   `inactive` tinyint(1) NOT NULL default '0',
493   PRIMARY KEY  (`branch_code`,`debtor_no`),
494   KEY `branch_code` (`branch_code`),
495   KEY `br_name` (`br_name`)
496 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
497
498
499 ### Data of table `0_cust_branch` ###
500
501
502
503 ### Structure of table `0_debtor_trans` ###
504
505 DROP TABLE IF EXISTS `0_debtor_trans`;
506
507 CREATE TABLE `0_debtor_trans` (
508   `trans_no` int(11) unsigned NOT NULL default '0',
509   `type` smallint(6) unsigned NOT NULL default '0',
510   `version` tinyint(1) unsigned NOT NULL default '0',
511   `debtor_no` int(11) unsigned default NULL,
512   `branch_code` int(11) NOT NULL default '-1',
513   `tran_date` date NOT NULL default '0000-00-00',
514   `due_date` date NOT NULL default '0000-00-00',
515   `reference` varchar(60) NOT NULL default '',
516   `tpe` int(11) NOT NULL default '0',
517   `order_` int(11) NOT NULL default '0',
518   `ov_amount` double NOT NULL default '0',
519   `ov_gst` double NOT NULL default '0',
520   `ov_freight` double NOT NULL default '0',
521   `ov_freight_tax` double NOT NULL default '0',
522   `ov_discount` double NOT NULL default '0',
523   `alloc` double NOT NULL default '0',
524   `rate` double NOT NULL default '1',
525   `ship_via` int(11) default NULL,
526   `trans_link` int(11) NOT NULL default '0',
527   `dimension_id` int(11) NOT NULL default '0',
528   `dimension2_id` int(11) NOT NULL default '0',
529   PRIMARY KEY  (`trans_no`,`type`),
530   KEY `debtor_no` (`debtor_no`,`branch_code`)
531 ) TYPE=InnoDB  ;
532
533
534 ### Data of table `0_debtor_trans` ###
535
536
537
538 ### Structure of table `0_debtor_trans_details` ###
539
540 DROP TABLE IF EXISTS `0_debtor_trans_details`;
541
542 CREATE TABLE `0_debtor_trans_details` (
543   `id` int(11) NOT NULL auto_increment,
544   `debtor_trans_no` int(11) default NULL,
545   `debtor_trans_type` int(11) default NULL,
546   `stock_id` varchar(20) NOT NULL default '',
547   `description` tinytext,
548   `unit_price` double NOT NULL default '0',
549   `unit_tax` double NOT NULL default '0',
550   `quantity` double NOT NULL default '0',
551   `discount_percent` double NOT NULL default '0',
552   `standard_cost` double NOT NULL default '0',
553   `qty_done` double NOT NULL default '0',
554   PRIMARY KEY  (`id`)
555 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
556
557
558 ### Data of table `0_debtor_trans_details` ###
559
560
561
562 ### Structure of table `0_debtors_master` ###
563
564 DROP TABLE IF EXISTS `0_debtors_master`;
565
566 CREATE TABLE `0_debtors_master` (
567   `debtor_no` int(11) NOT NULL auto_increment,
568   `name` varchar(80) NOT NULL default '',
569   `address` tinytext,
570   `email` varchar(100) NOT NULL default '',
571   `tax_id` varchar(55) NOT NULL default '',
572   `curr_code` char(3) NOT NULL default '',
573   `sales_type` int(11) NOT NULL default '1',
574   `dimension_id` int(11) NOT NULL default '0',
575   `dimension2_id` int(11) NOT NULL default '0',
576   `credit_status` int(11) NOT NULL default '0',
577   `payment_terms` int(11) default NULL,
578   `discount` double NOT NULL default '0',
579   `pymt_discount` double NOT NULL default '0',
580   `credit_limit` float NOT NULL default '1000',
581   `inactive` tinyint(1) NOT NULL default '0',
582   PRIMARY KEY  (`debtor_no`),
583   UNIQUE KEY `name` (`name`)
584 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
585
586
587 ### Data of table `0_debtors_master` ###
588
589
590
591 ### Structure of table `0_dimensions` ###
592
593 DROP TABLE IF EXISTS `0_dimensions`;
594
595 CREATE TABLE `0_dimensions` (
596   `id` int(11) NOT NULL auto_increment,
597   `reference` varchar(60) NOT NULL default '',
598   `name` varchar(60) NOT NULL default '',
599   `type_` tinyint(1) NOT NULL default '1',
600   `closed` tinyint(1) NOT NULL default '0',
601   `date_` date NOT NULL default '0000-00-00',
602   `due_date` date NOT NULL default '0000-00-00',
603   PRIMARY KEY  (`id`),
604   UNIQUE KEY `reference` (`reference`)
605 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
606
607
608 ### Data of table `0_dimensions` ###
609
610
611
612 ### Structure of table `0_exchange_rates` ###
613
614 DROP TABLE IF EXISTS `0_exchange_rates`;
615
616 CREATE TABLE `0_exchange_rates` (
617   `id` int(11) NOT NULL auto_increment,
618   `curr_code` char(3) NOT NULL default '',
619   `rate_buy` double NOT NULL default '0',
620   `rate_sell` double NOT NULL default '0',
621   `date_` date NOT NULL default '0000-00-00',
622   PRIMARY KEY  (`id`),
623   UNIQUE KEY `curr_code` (`curr_code`,`date_`)
624 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
625
626
627 ### Data of table `0_exchange_rates` ###
628
629
630
631 ### Structure of table `0_fiscal_year` ###
632
633 DROP TABLE IF EXISTS `0_fiscal_year`;
634
635 CREATE TABLE `0_fiscal_year` (
636   `id` int(11) NOT NULL auto_increment,
637   `begin` date default '0000-00-00',
638   `end` date default '0000-00-00',
639   `closed` tinyint(1) NOT NULL default '0',
640   PRIMARY KEY  (`id`)
641 ) TYPE=InnoDB AUTO_INCREMENT=2 ;
642
643
644 ### Data of table `0_fiscal_year` ###
645
646 INSERT INTO `0_fiscal_year` VALUES ('1', '2008-01-01', '2008-12-31', '0');
647
648
649 ### Structure of table `0_gl_trans` ###
650
651 DROP TABLE IF EXISTS `0_gl_trans`;
652
653 CREATE TABLE `0_gl_trans` (
654   `counter` int(11) NOT NULL auto_increment,
655   `type` smallint(6) NOT NULL default '0',
656   `type_no` bigint(16) NOT NULL default '1',
657   `tran_date` date NOT NULL default '0000-00-00',
658   `account` varchar(11) NOT NULL default '',
659   `memo_` tinytext NOT NULL,
660   `amount` double NOT NULL default '0',
661   `dimension_id` int(11) NOT NULL default '0',
662   `dimension2_id` int(11) NOT NULL default '0',
663   `person_type_id` int(11) default NULL,
664   `person_id` tinyblob,
665   PRIMARY KEY  (`counter`),
666   KEY `Type_and_Number` (`type`,`type_no`)
667 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
668
669
670 ### Data of table `0_gl_trans` ###
671
672
673
674 ### Structure of table `0_grn_batch` ###
675
676 DROP TABLE IF EXISTS `0_grn_batch`;
677
678 CREATE TABLE `0_grn_batch` (
679   `id` int(11) NOT NULL auto_increment,
680   `supplier_id` int(11) NOT NULL default '0',
681   `purch_order_no` int(11) default NULL,
682   `reference` varchar(60) NOT NULL default '',
683   `delivery_date` date NOT NULL default '0000-00-00',
684   `loc_code` varchar(5) default NULL,
685   PRIMARY KEY  (`id`)
686 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
687
688
689 ### Data of table `0_grn_batch` ###
690
691
692
693 ### Structure of table `0_grn_items` ###
694
695 DROP TABLE IF EXISTS `0_grn_items`;
696
697 CREATE TABLE `0_grn_items` (
698   `id` int(11) NOT NULL auto_increment,
699   `grn_batch_id` int(11) default NULL,
700   `po_detail_item` int(11) NOT NULL default '0',
701   `item_code` varchar(20) NOT NULL default '',
702   `description` tinytext,
703   `qty_recd` double NOT NULL default '0',
704   `quantity_inv` double NOT NULL default '0',
705   PRIMARY KEY  (`id`)
706 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
707
708
709 ### Data of table `0_grn_items` ###
710
711
712
713 ### Structure of table `0_groups` ###
714
715 DROP TABLE IF EXISTS `0_groups`;
716
717 CREATE TABLE `0_groups` (
718   `id` smallint(6) unsigned NOT NULL auto_increment,
719   `description` varchar(60) NOT NULL default '',
720   `inactive` tinyint(1) NOT NULL default '0',
721   PRIMARY KEY  (`id`),
722   UNIQUE KEY `description` (`description`)
723 ) TYPE=MyISAM AUTO_INCREMENT=4 ;
724
725
726 ### Data of table `0_groups` ###
727
728 INSERT INTO `0_groups` VALUES ('1', 'Small', '0');
729 INSERT INTO `0_groups` VALUES ('2', 'Medium', '0');
730 INSERT INTO `0_groups` VALUES ('3', 'Large', '0');
731
732
733 ### Structure of table `0_item_codes` ###
734
735 DROP TABLE IF EXISTS `0_item_codes`;
736
737 CREATE TABLE `0_item_codes` (
738   `id` int(11) unsigned NOT NULL auto_increment,
739   `item_code` varchar(20) NOT NULL,
740   `stock_id` varchar(20) NOT NULL,
741   `description` varchar(200) NOT NULL default '',
742   `category_id` smallint(6) unsigned NOT NULL,
743   `quantity` double NOT NULL default '1',
744   `is_foreign` tinyint(1) NOT NULL default '0',
745   `inactive` tinyint(1) NOT NULL default '0',
746   PRIMARY KEY  (`id`),
747   UNIQUE KEY `stock_id` (`stock_id`,`item_code`)
748 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
749
750
751 ### Data of table `0_item_codes` ###
752
753
754
755 ### Structure of table `0_item_tax_type_exemptions` ###
756
757 DROP TABLE IF EXISTS `0_item_tax_type_exemptions`;
758
759 CREATE TABLE `0_item_tax_type_exemptions` (
760   `item_tax_type_id` int(11) NOT NULL default '0',
761   `tax_type_id` int(11) NOT NULL default '0',
762   PRIMARY KEY  (`item_tax_type_id`,`tax_type_id`)
763 ) TYPE=InnoDB  ;
764
765
766 ### Data of table `0_item_tax_type_exemptions` ###
767
768
769
770 ### Structure of table `0_item_tax_types` ###
771
772 DROP TABLE IF EXISTS `0_item_tax_types`;
773
774 CREATE TABLE `0_item_tax_types` (
775   `id` int(11) NOT NULL auto_increment,
776   `name` varchar(60) NOT NULL default '',
777   `exempt` tinyint(1) NOT NULL default '0',
778   `inactive` tinyint(1) NOT NULL default '0',
779   PRIMARY KEY  (`id`),
780   UNIQUE KEY `name` (`name`)
781 ) TYPE=InnoDB AUTO_INCREMENT=2 ;
782
783
784 ### Data of table `0_item_tax_types` ###
785
786 INSERT INTO `0_item_tax_types` VALUES ('1', 'Regular', '0', '0');
787
788
789 ### Structure of table `0_item_units` ###
790
791 DROP TABLE IF EXISTS `0_item_units`;
792
793 CREATE TABLE `0_item_units` (
794   `abbr` varchar(20) NOT NULL,
795   `name` varchar(40) NOT NULL,
796   `decimals` tinyint(2) NOT NULL,
797   `inactive` tinyint(1) NOT NULL default '0',
798   PRIMARY KEY  (`abbr`),
799   UNIQUE KEY `name` (`name`)
800 ) TYPE=MyISAM  ;
801
802
803 ### Data of table `0_item_units` ###
804
805 INSERT INTO `0_item_units` VALUES ('ea.', 'Each', '0', '0');
806
807
808 ### Structure of table `0_loc_stock` ###
809
810 DROP TABLE IF EXISTS `0_loc_stock`;
811
812 CREATE TABLE `0_loc_stock` (
813   `loc_code` char(5) NOT NULL default '',
814   `stock_id` char(20) NOT NULL default '',
815   `reorder_level` bigint(20) NOT NULL default '0',
816   PRIMARY KEY  (`loc_code`,`stock_id`),
817   KEY `stock_id` (`stock_id`)
818 ) TYPE=InnoDB  ;
819
820
821 ### Data of table `0_loc_stock` ###
822
823
824
825 ### Structure of table `0_locations` ###
826
827 DROP TABLE IF EXISTS `0_locations`;
828
829 CREATE TABLE `0_locations` (
830   `loc_code` varchar(5) NOT NULL default '',
831   `location_name` varchar(60) NOT NULL default '',
832   `delivery_address` tinytext NOT NULL,
833   `phone` varchar(30) NOT NULL default '',
834   `fax` varchar(30) NOT NULL default '',
835   `email` varchar(100) NOT NULL default '',
836   `contact` varchar(30) NOT NULL default '',
837   `inactive` tinyint(1) NOT NULL default '0',
838   PRIMARY KEY  (`loc_code`)
839 ) TYPE=MyISAM  ;
840
841
842 ### Data of table `0_locations` ###
843
844 INSERT INTO `0_locations` VALUES ('DEF', 'Default', 'N/A', '', '', '', '', '0');
845
846
847 ### Structure of table `0_movement_types` ###
848
849 DROP TABLE IF EXISTS `0_movement_types`;
850
851 CREATE TABLE `0_movement_types` (
852   `id` int(11) NOT NULL auto_increment,
853   `name` varchar(60) NOT NULL default '',
854   `inactive` tinyint(1) NOT NULL default '0',
855   PRIMARY KEY  (`id`),
856   UNIQUE KEY `name` (`name`)
857 ) TYPE=MyISAM AUTO_INCREMENT=2 ;
858
859
860 ### Data of table `0_movement_types` ###
861
862 INSERT INTO `0_movement_types` VALUES ('1', 'Adjustment', '0');
863
864
865 ### Structure of table `0_payment_terms` ###
866
867 DROP TABLE IF EXISTS `0_payment_terms`;
868
869 CREATE TABLE `0_payment_terms` (
870   `terms_indicator` int(11) NOT NULL auto_increment,
871   `terms` char(80) NOT NULL default '',
872   `days_before_due` smallint(6) NOT NULL default '0',
873   `day_in_following_month` smallint(6) NOT NULL default '0',
874   `inactive` tinyint(1) NOT NULL default '0',
875   PRIMARY KEY  (`terms_indicator`),
876   UNIQUE KEY `terms` (`terms`)
877 ) TYPE=MyISAM AUTO_INCREMENT=5 ;
878
879
880 ### Data of table `0_payment_terms` ###
881
882 INSERT INTO `0_payment_terms` VALUES ('1', 'Due 15th Of the Following Month', '0', '17', '0');
883 INSERT INTO `0_payment_terms` VALUES ('2', 'Due By End Of The Following Month', '0', '30', '0');
884 INSERT INTO `0_payment_terms` VALUES ('3', 'Payment due within 10 days', '10', '0', '0');
885 INSERT INTO `0_payment_terms` VALUES ('4', 'Cash Only', '1', '0', '0');
886
887
888 ### Structure of table `0_prices` ###
889
890 DROP TABLE IF EXISTS `0_prices`;
891
892 CREATE TABLE `0_prices` (
893   `id` int(11) NOT NULL auto_increment,
894   `stock_id` varchar(20) NOT NULL default '',
895   `sales_type_id` int(11) NOT NULL default '0',
896   `curr_abrev` char(3) NOT NULL default '',
897   `price` double NOT NULL default '0',
898   PRIMARY KEY  (`id`),
899   UNIQUE KEY `price` (`stock_id`,`sales_type_id`,`curr_abrev`)
900 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
901
902
903 ### Data of table `0_prices` ###
904
905
906
907 ### Structure of table `0_print_profiles` ###
908
909 DROP TABLE IF EXISTS `0_print_profiles`;
910
911 CREATE TABLE `0_print_profiles` (
912   `id` smallint(6) unsigned NOT NULL auto_increment,
913   `profile` varchar(30) NOT NULL,
914   `report` varchar(5) default NULL,
915   `printer` tinyint(3) unsigned default NULL,
916   PRIMARY KEY  (`id`),
917   UNIQUE KEY `profile` (`profile`,`report`)
918 ) TYPE=MyISAM AUTO_INCREMENT=10 ;
919
920
921 ### Data of table `0_print_profiles` ###
922
923 INSERT INTO `0_print_profiles` VALUES ('1', 'Out of office', '', '0');
924 INSERT INTO `0_print_profiles` VALUES ('2', 'Sales Department', '', '0');
925 INSERT INTO `0_print_profiles` VALUES ('3', 'Central', '', '2');
926 INSERT INTO `0_print_profiles` VALUES ('4', 'Sales Department', '104', '2');
927 INSERT INTO `0_print_profiles` VALUES ('5', 'Sales Department', '105', '2');
928 INSERT INTO `0_print_profiles` VALUES ('6', 'Sales Department', '107', '2');
929 INSERT INTO `0_print_profiles` VALUES ('7', 'Sales Department', '109', '2');
930 INSERT INTO `0_print_profiles` VALUES ('8', 'Sales Department', '110', '2');
931 INSERT INTO `0_print_profiles` VALUES ('9', 'Sales Department', '201', '2');
932
933
934 ### Structure of table `0_printers` ###
935
936 DROP TABLE IF EXISTS `0_printers`;
937
938 CREATE TABLE `0_printers` (
939   `id` tinyint(3) unsigned NOT NULL auto_increment,
940   `name` varchar(20) NOT NULL,
941   `description` varchar(60) NOT NULL,
942   `queue` varchar(20) NOT NULL,
943   `host` varchar(40) NOT NULL,
944   `port` smallint(11) unsigned NOT NULL,
945   `timeout` tinyint(3) unsigned NOT NULL,
946   PRIMARY KEY  (`id`),
947   UNIQUE KEY `name` (`name`)
948 ) TYPE=MyISAM AUTO_INCREMENT=4 ;
949
950
951 ### Data of table `0_printers` ###
952
953 INSERT INTO `0_printers` VALUES ('1', 'QL500', 'Label printer', 'QL500', 'server', '127', '20');
954 INSERT INTO `0_printers` VALUES ('2', 'Samsung', 'Main network printer', 'scx4521F', 'server', '515', '5');
955 INSERT INTO `0_printers` VALUES ('3', 'Local', 'Local print server at user IP', 'lp', '', '515', '10');
956
957
958 ### Structure of table `0_purch_data` ###
959
960 DROP TABLE IF EXISTS `0_purch_data`;
961
962 CREATE TABLE `0_purch_data` (
963   `supplier_id` int(11) NOT NULL default '0',
964   `stock_id` char(20) NOT NULL default '',
965   `price` double NOT NULL default '0',
966   `suppliers_uom` char(50) NOT NULL default '',
967   `conversion_factor` double NOT NULL default '1',
968   `supplier_description` char(50) NOT NULL default '',
969   PRIMARY KEY  (`supplier_id`,`stock_id`)
970 ) TYPE=MyISAM  ;
971
972
973 ### Data of table `0_purch_data` ###
974
975
976
977 ### Structure of table `0_purch_order_details` ###
978
979 DROP TABLE IF EXISTS `0_purch_order_details`;
980
981 CREATE TABLE `0_purch_order_details` (
982   `po_detail_item` int(11) NOT NULL auto_increment,
983   `order_no` int(11) NOT NULL default '0',
984   `item_code` varchar(20) NOT NULL default '',
985   `description` tinytext,
986   `delivery_date` date NOT NULL default '0000-00-00',
987   `qty_invoiced` double NOT NULL default '0',
988   `unit_price` double NOT NULL default '0',
989   `act_price` double NOT NULL default '0',
990   `std_cost_unit` double NOT NULL default '0',
991   `quantity_ordered` double NOT NULL default '0',
992   `quantity_received` double NOT NULL default '0',
993   PRIMARY KEY  (`po_detail_item`)
994 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
995
996
997 ### Data of table `0_purch_order_details` ###
998
999
1000
1001 ### Structure of table `0_purch_orders` ###
1002
1003 DROP TABLE IF EXISTS `0_purch_orders`;
1004
1005 CREATE TABLE `0_purch_orders` (
1006   `order_no` int(11) NOT NULL auto_increment,
1007   `supplier_id` int(11) NOT NULL default '0',
1008   `comments` tinytext,
1009   `ord_date` date NOT NULL default '0000-00-00',
1010   `reference` tinytext NOT NULL,
1011   `requisition_no` tinytext,
1012   `into_stock_location` varchar(5) NOT NULL default '',
1013   `delivery_address` tinytext NOT NULL,
1014   PRIMARY KEY  (`order_no`)
1015 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1016
1017
1018 ### Data of table `0_purch_orders` ###
1019
1020
1021
1022 ### Structure of table `0_quick_entries` ###
1023
1024 DROP TABLE IF EXISTS `0_quick_entries`;
1025
1026 CREATE TABLE `0_quick_entries` (
1027   `id` smallint(6) unsigned NOT NULL auto_increment,
1028   `type` tinyint(1) NOT NULL default '0',
1029   `description` varchar(60) NOT NULL,
1030   `base_amount` double NOT NULL default '0',
1031   `base_desc` varchar(60) default NULL,
1032   PRIMARY KEY  (`id`),
1033   KEY `description` (`description`)
1034 ) TYPE=MyISAM AUTO_INCREMENT=4 ;
1035
1036
1037 ### Data of table `0_quick_entries` ###
1038
1039 INSERT INTO `0_quick_entries` VALUES ('1', '1', 'Maintenance', '0', 'Amount');
1040 INSERT INTO `0_quick_entries` VALUES ('2', '4', 'Phone', '0', 'Amount');
1041 INSERT INTO `0_quick_entries` VALUES ('3', '2', 'Cash Sales', '0', 'Amount');
1042
1043
1044 ### Structure of table `0_quick_entry_lines` ###
1045
1046 DROP TABLE IF EXISTS `0_quick_entry_lines`;
1047
1048 CREATE TABLE `0_quick_entry_lines` (
1049   `id` smallint(6) unsigned NOT NULL auto_increment,
1050   `qid` smallint(6) unsigned NOT NULL,
1051   `amount` double default '0',
1052   `action` varchar(2) NOT NULL,
1053   `dest_id` varchar(11) NOT NULL,
1054   `dimension_id` smallint(6) unsigned default NULL,
1055   `dimension2_id` smallint(6) unsigned default NULL,
1056   PRIMARY KEY  (`id`),
1057   KEY `qid` (`qid`)
1058 ) TYPE=MyISAM AUTO_INCREMENT=7 ;
1059
1060
1061 ### Data of table `0_quick_entry_lines` ###
1062
1063 INSERT INTO `0_quick_entry_lines` VALUES ('1', '1', '0', 't-', '1', '0', '0');
1064 INSERT INTO `0_quick_entry_lines` VALUES ('2', '2', '0', 't-', '1', '0', '0');
1065 INSERT INTO `0_quick_entry_lines` VALUES ('3', '3', '0', 't-', '1', '0', '0');
1066 INSERT INTO `0_quick_entry_lines` VALUES ('4', '3', '0', '=', '4010', '0', '0');
1067 INSERT INTO `0_quick_entry_lines` VALUES ('5', '1', '0', '=', '5765', '0', '0');
1068 INSERT INTO `0_quick_entry_lines` VALUES ('6', '2', '0', '=', '5780', '0', '0');
1069
1070
1071 ### Structure of table `0_recurrent_invoices` ###
1072
1073 DROP TABLE IF EXISTS `0_recurrent_invoices`;
1074
1075 CREATE TABLE `0_recurrent_invoices` (
1076   `id` smallint(6) unsigned NOT NULL auto_increment,
1077   `description` varchar(60) NOT NULL default '',
1078   `order_no` int(11) unsigned NOT NULL,
1079   `debtor_no` int(11) unsigned default NULL,
1080   `group_no` smallint(6) unsigned default NULL,
1081   `days` int(11) NOT NULL default '0',
1082   `monthly` int(11) NOT NULL default '0',
1083   `begin` date NOT NULL default '0000-00-00',
1084   `end` date NOT NULL default '0000-00-00',
1085   `last_sent` date NOT NULL default '0000-00-00',
1086   PRIMARY KEY  (`id`),
1087   UNIQUE KEY `description` (`description`)
1088 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1089
1090
1091 ### Data of table `0_recurrent_invoices` ###
1092
1093
1094
1095 ### Structure of table `0_refs` ###
1096
1097 DROP TABLE IF EXISTS `0_refs`;
1098
1099 CREATE TABLE `0_refs` (
1100   `id` int(11) NOT NULL default '0',
1101   `type` int(11) NOT NULL default '0',
1102   `reference` varchar(100) NOT NULL default '',
1103   PRIMARY KEY  (`id`,`type`)
1104 ) TYPE=InnoDB  ;
1105
1106
1107 ### Data of table `0_refs` ###
1108
1109
1110
1111 ### Structure of table `0_sales_order_details` ###
1112
1113 DROP TABLE IF EXISTS `0_sales_order_details`;
1114
1115 CREATE TABLE `0_sales_order_details` (
1116   `id` int(11) NOT NULL auto_increment,
1117   `order_no` int(11) NOT NULL default '0',
1118   `stk_code` varchar(20) NOT NULL default '',
1119   `description` tinytext,
1120   `qty_sent` double NOT NULL default '0',
1121   `unit_price` double NOT NULL default '0',
1122   `quantity` double NOT NULL default '0',
1123   `discount_percent` double NOT NULL default '0',
1124   PRIMARY KEY  (`id`)
1125 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1126
1127
1128 ### Data of table `0_sales_order_details` ###
1129
1130
1131
1132 ### Structure of table `0_sales_orders` ###
1133
1134 DROP TABLE IF EXISTS `0_sales_orders`;
1135
1136 CREATE TABLE `0_sales_orders` (
1137   `order_no` int(11) NOT NULL auto_increment,
1138   `version` tinyint(1) unsigned NOT NULL default '0',
1139   `type` tinyint(1) NOT NULL default '0',
1140   `debtor_no` int(11) NOT NULL default '0',
1141   `branch_code` int(11) NOT NULL default '0',
1142   `customer_ref` tinytext NOT NULL,
1143   `comments` tinytext,
1144   `ord_date` date NOT NULL default '0000-00-00',
1145   `order_type` int(11) NOT NULL default '0',
1146   `ship_via` int(11) NOT NULL default '0',
1147   `delivery_address` tinytext NOT NULL,
1148   `contact_phone` varchar(30) default NULL,
1149   `contact_email` varchar(100) default NULL,
1150   `deliver_to` tinytext NOT NULL,
1151   `freight_cost` double NOT NULL default '0',
1152   `from_stk_loc` varchar(5) NOT NULL default '',
1153   `delivery_date` date NOT NULL default '0000-00-00',
1154   PRIMARY KEY  (`order_no`)
1155 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1156
1157
1158 ### Data of table `0_sales_orders` ###
1159
1160
1161
1162 ### Structure of table `0_sales_pos` ###
1163
1164 DROP TABLE IF EXISTS `0_sales_pos`;
1165
1166 CREATE TABLE `0_sales_pos` (
1167   `id` smallint(6) unsigned NOT NULL auto_increment,
1168   `pos_name` varchar(30) NOT NULL,
1169   `cash_sale` tinyint(1) NOT NULL,
1170   `credit_sale` tinyint(1) NOT NULL,
1171   `pos_location` varchar(5) NOT NULL,
1172   `pos_account` smallint(6) unsigned NOT NULL,
1173   `inactive` tinyint(1) NOT NULL default '0',
1174   PRIMARY KEY  (`id`),
1175   UNIQUE KEY `pos_name` (`pos_name`)
1176 ) TYPE=MyISAM AUTO_INCREMENT=2 ;
1177
1178
1179 ### Data of table `0_sales_pos` ###
1180
1181 INSERT INTO `0_sales_pos` VALUES ('1', 'Default', '1', '1', 'DEF', '2', '0');
1182
1183
1184 ### Structure of table `0_sales_types` ###
1185
1186 DROP TABLE IF EXISTS `0_sales_types`;
1187
1188 CREATE TABLE `0_sales_types` (
1189   `id` int(11) NOT NULL auto_increment,
1190   `sales_type` char(50) NOT NULL default '',
1191   `tax_included` int(1) NOT NULL default '0',
1192   `factor` double NOT NULL default '1',
1193   `inactive` tinyint(1) NOT NULL default '0',
1194   PRIMARY KEY  (`id`),
1195   UNIQUE KEY `sales_type` (`sales_type`)
1196 ) TYPE=MyISAM AUTO_INCREMENT=3 ;
1197
1198
1199 ### Data of table `0_sales_types` ###
1200
1201 INSERT INTO `0_sales_types` VALUES ('1', 'Retail', '1', '1', '0');
1202 INSERT INTO `0_sales_types` VALUES ('2', 'Wholesale', '0', '0.7', '0');
1203
1204
1205 ### Structure of table `0_salesman` ###
1206
1207 DROP TABLE IF EXISTS `0_salesman`;
1208
1209 CREATE TABLE `0_salesman` (
1210   `salesman_code` int(11) NOT NULL auto_increment,
1211   `salesman_name` char(60) NOT NULL default '',
1212   `salesman_phone` char(30) NOT NULL default '',
1213   `salesman_fax` char(30) NOT NULL default '',
1214   `salesman_email` varchar(100) NOT NULL default '',
1215   `provision` double NOT NULL default '0',
1216   `break_pt` double NOT NULL default '0',
1217   `provision2` double NOT NULL default '0',
1218   `inactive` tinyint(1) NOT NULL default '0',
1219   PRIMARY KEY  (`salesman_code`),
1220   UNIQUE KEY `salesman_name` (`salesman_name`)
1221 ) TYPE=MyISAM AUTO_INCREMENT=2 ;
1222
1223
1224 ### Data of table `0_salesman` ###
1225
1226 INSERT INTO `0_salesman` VALUES ('1', 'Sales Person', '', '', '', '5', '1000', '4', '0');
1227
1228
1229 ### Structure of table `0_shippers` ###
1230
1231 DROP TABLE IF EXISTS `0_shippers`;
1232
1233 CREATE TABLE `0_shippers` (
1234   `shipper_id` int(11) NOT NULL auto_increment,
1235   `shipper_name` varchar(60) NOT NULL default '',
1236   `phone` varchar(30) NOT NULL default '',
1237   `contact` tinytext NOT NULL,
1238   `address` tinytext NOT NULL,
1239   `inactive` tinyint(1) NOT NULL default '0',
1240   PRIMARY KEY  (`shipper_id`),
1241   UNIQUE KEY `name` (`shipper_name`)
1242 ) TYPE=MyISAM AUTO_INCREMENT=2 ;
1243
1244
1245 ### Data of table `0_shippers` ###
1246
1247 INSERT INTO `0_shippers` VALUES ('1', 'Default', '', '', '', '0');
1248
1249
1250 ### Structure of table `0_sql_trail` ###
1251
1252 DROP TABLE IF EXISTS `0_sql_trail`;
1253
1254 CREATE TABLE `0_sql_trail` (
1255   `id` int(11) unsigned NOT NULL auto_increment,
1256   `sql` text NOT NULL,
1257   `result` tinyint(1) NOT NULL,
1258   `msg` varchar(255) NOT NULL,
1259   PRIMARY KEY  (`id`)
1260 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
1261
1262
1263 ### Data of table `0_sql_trail` ###
1264
1265
1266
1267 ### Structure of table `0_stock_category` ###
1268
1269 DROP TABLE IF EXISTS `0_stock_category`;
1270
1271 CREATE TABLE `0_stock_category` (
1272   `category_id` int(11) NOT NULL auto_increment,
1273   `description` varchar(60) NOT NULL default '',
1274   `dflt_tax_type` int(11) NOT NULL default '0',
1275   `dflt_units` varchar(20) NOT NULL default 'each',
1276   `dflt_mb_flag` char(1) NOT NULL default 'B',
1277   `dflt_sales_act` varchar(11) NOT NULL default '',
1278   `dflt_cogs_act` varchar(11) NOT NULL default '',
1279   `dflt_inventory_act` varchar(11) NOT NULL default '',
1280   `dflt_adjustment_act` varchar(11) NOT NULL default '',
1281   `dflt_assembly_act` varchar(11) NOT NULL default '',
1282   `dflt_dim1` int(11) default NULL,
1283   `dflt_dim2` int(11) default NULL,
1284   `inactive` tinyint(1) NOT NULL default '0',
1285   `dflt_no_sale` tinyint(1) NOT NULL default '0',
1286   PRIMARY KEY  (`category_id`),
1287   UNIQUE KEY `description` (`description`)
1288 ) TYPE=MyISAM AUTO_INCREMENT=5 ;
1289
1290
1291 ### Data of table `0_stock_category` ###
1292
1293 INSERT INTO `0_stock_category` VALUES ('1', 'Components', '1', 'each', 'B', '4010', '5010', '1510', '5040', '1530', '0', '0', '0', '0');
1294 INSERT INTO `0_stock_category` VALUES ('2', 'Charges', '1', 'each', 'D', '4010', '5010', '1510', '5040', '1530', '0', '0', '0', '0');
1295 INSERT INTO `0_stock_category` VALUES ('3', 'Systems', '1', 'each', 'M', '4010', '5010', '1510', '5040', '1530', '0', '0', '0', '0');
1296 INSERT INTO `0_stock_category` VALUES ('4', 'Services', '1', 'hrs', 'D', '4010', '5010', '1510', '5040', '1530', '0', '0', '0', '0');
1297
1298
1299 ### Structure of table `0_stock_master` ###
1300
1301 DROP TABLE IF EXISTS `0_stock_master`;
1302
1303 CREATE TABLE `0_stock_master` (
1304   `stock_id` varchar(20) NOT NULL default '',
1305   `category_id` int(11) NOT NULL default '0',
1306   `tax_type_id` int(11) NOT NULL default '0',
1307   `description` varchar(200) NOT NULL default '',
1308   `long_description` tinytext NOT NULL,
1309   `units` varchar(20) NOT NULL default 'each',
1310   `mb_flag` char(1) NOT NULL default 'B',
1311   `sales_account` varchar(11) NOT NULL default '',
1312   `cogs_account` varchar(11) NOT NULL default '',
1313   `inventory_account` varchar(11) NOT NULL default '',
1314   `adjustment_account` varchar(11) NOT NULL default '',
1315   `assembly_account` varchar(11) NOT NULL default '',
1316   `dimension_id` int(11) default NULL,
1317   `dimension2_id` int(11) default NULL,
1318   `actual_cost` double NOT NULL default '0',
1319   `last_cost` double NOT NULL default '0',
1320   `material_cost` double NOT NULL default '0',
1321   `labour_cost` double NOT NULL default '0',
1322   `overhead_cost` double NOT NULL default '0',
1323   `inactive` tinyint(1) NOT NULL default '0',
1324   `no_sale` tinyint(1) NOT NULL default '0',
1325   PRIMARY KEY  (`stock_id`)
1326 ) TYPE=InnoDB  ;
1327
1328
1329 ### Data of table `0_stock_master` ###
1330
1331
1332
1333 ### Structure of table `0_stock_moves` ###
1334
1335 DROP TABLE IF EXISTS `0_stock_moves`;
1336
1337 CREATE TABLE `0_stock_moves` (
1338   `trans_id` int(11) NOT NULL auto_increment,
1339   `trans_no` int(11) NOT NULL default '0',
1340   `stock_id` char(20) NOT NULL default '',
1341   `type` smallint(6) NOT NULL default '0',
1342   `loc_code` char(5) NOT NULL default '',
1343   `tran_date` date NOT NULL default '0000-00-00',
1344   `person_id` int(11) default NULL,
1345   `price` double NOT NULL default '0',
1346   `reference` char(40) NOT NULL default '',
1347   `qty` double NOT NULL default '1',
1348   `discount_percent` double NOT NULL default '0',
1349   `standard_cost` double NOT NULL default '0',
1350   `visible` tinyint(1) NOT NULL default '1',
1351   PRIMARY KEY  (`trans_id`),
1352   KEY `type` (`type`,`trans_no`)
1353 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1354
1355
1356 ### Data of table `0_stock_moves` ###
1357
1358
1359
1360 ### Structure of table `0_supp_allocations` ###
1361
1362 DROP TABLE IF EXISTS `0_supp_allocations`;
1363
1364 CREATE TABLE `0_supp_allocations` (
1365   `id` int(11) NOT NULL auto_increment,
1366   `amt` double unsigned default NULL,
1367   `date_alloc` date NOT NULL default '0000-00-00',
1368   `trans_no_from` int(11) default NULL,
1369   `trans_type_from` int(11) default NULL,
1370   `trans_no_to` int(11) default NULL,
1371   `trans_type_to` int(11) default NULL,
1372   PRIMARY KEY  (`id`)
1373 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1374
1375
1376 ### Data of table `0_supp_allocations` ###
1377
1378
1379
1380 ### Structure of table `0_supp_invoice_items` ###
1381
1382 DROP TABLE IF EXISTS `0_supp_invoice_items`;
1383
1384 CREATE TABLE `0_supp_invoice_items` (
1385   `id` int(11) NOT NULL auto_increment,
1386   `supp_trans_no` int(11) default NULL,
1387   `supp_trans_type` int(11) default NULL,
1388   `gl_code` varchar(11) NOT NULL default '0',
1389   `grn_item_id` int(11) default NULL,
1390   `po_detail_item_id` int(11) default NULL,
1391   `stock_id` varchar(20) NOT NULL default '',
1392   `description` tinytext,
1393   `quantity` double NOT NULL default '0',
1394   `unit_price` double NOT NULL default '0',
1395   `unit_tax` double NOT NULL default '0',
1396   `memo_` tinytext,
1397   PRIMARY KEY  (`id`)
1398 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1399
1400
1401 ### Data of table `0_supp_invoice_items` ###
1402
1403
1404
1405 ### Structure of table `0_supp_trans` ###
1406
1407 DROP TABLE IF EXISTS `0_supp_trans`;
1408
1409 CREATE TABLE `0_supp_trans` (
1410   `trans_no` int(11) unsigned NOT NULL default '0',
1411   `type` smallint(6) unsigned NOT NULL default '0',
1412   `supplier_id` int(11) unsigned default NULL,
1413   `reference` tinytext NOT NULL,
1414   `supp_reference` varchar(60) NOT NULL default '',
1415   `tran_date` date NOT NULL default '0000-00-00',
1416   `due_date` date NOT NULL default '0000-00-00',
1417   `ov_amount` double NOT NULL default '0',
1418   `ov_discount` double NOT NULL default '0',
1419   `ov_gst` double NOT NULL default '0',
1420   `rate` double NOT NULL default '1',
1421   `alloc` double NOT NULL default '0',
1422   PRIMARY KEY  (`trans_no`,`type`),
1423   KEY `supplier_id` (`supplier_id`),
1424   KEY `SupplierID_2` (`supplier_id`,`supp_reference`),
1425   KEY `type` (`type`)
1426 ) TYPE=InnoDB  ;
1427
1428
1429 ### Data of table `0_supp_trans` ###
1430
1431
1432
1433 ### Structure of table `0_suppliers` ###
1434
1435 DROP TABLE IF EXISTS `0_suppliers`;
1436
1437 CREATE TABLE `0_suppliers` (
1438   `supplier_id` int(11) NOT NULL auto_increment,
1439   `supp_name` varchar(60) NOT NULL default '',
1440   `address` tinytext NOT NULL,
1441   `supp_address` tinytext NOT NULL,
1442   `phone` varchar(30) NOT NULL default '',
1443   `fax` varchar(30) NOT NULL default '',
1444   `gst_no` varchar(25) NOT NULL default '',
1445   `contact` varchar(60) NOT NULL default '',
1446   `supp_account_no` varchar(40) NOT NULL default '',
1447   `email` varchar(100) NOT NULL default '',
1448   `website` varchar(100) NOT NULL default '',
1449   `bank_account` varchar(60) NOT NULL default '',
1450   `curr_code` char(3) default NULL,
1451   `payment_terms` int(11) default NULL,
1452   `dimension_id` int(11) default '0',
1453   `dimension2_id` int(11) default '0',
1454   `tax_group_id` int(11) default NULL,
1455   `credit_limit` double NOT NULL default '0',
1456   `purchase_account` varchar(11) default NULL,
1457   `payable_account` varchar(11) default NULL,
1458   `payment_discount_account` varchar(11) default NULL,
1459   `notes` tinytext NOT NULL,
1460   `inactive` tinyint(1) NOT NULL default '0',
1461   PRIMARY KEY  (`supplier_id`)
1462 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
1463
1464
1465 ### Data of table `0_suppliers` ###
1466
1467
1468
1469 ### Structure of table `0_sys_types` ###
1470
1471 DROP TABLE IF EXISTS `0_sys_types`;
1472
1473 CREATE TABLE `0_sys_types` (
1474   `type_id` smallint(6) NOT NULL default '0',
1475   `type_name` varchar(60) NOT NULL default '',
1476   `type_no` int(11) NOT NULL default '1',
1477   `next_reference` varchar(100) NOT NULL default '',
1478   PRIMARY KEY  (`type_id`)
1479 ) TYPE=InnoDB  ;
1480
1481
1482 ### Data of table `0_sys_types` ###
1483
1484 INSERT INTO `0_sys_types` VALUES ('0', 'Journal - GL', '17', '1');
1485 INSERT INTO `0_sys_types` VALUES ('1', 'Payment - GL', '7', '1');
1486 INSERT INTO `0_sys_types` VALUES ('2', 'Receipt - GL', '4', '1');
1487 INSERT INTO `0_sys_types` VALUES ('4', 'Funds Transfer', '3', '1');
1488 INSERT INTO `0_sys_types` VALUES ('10', 'Sales Invoice', '16', '1');
1489 INSERT INTO `0_sys_types` VALUES ('11', 'Credit Note', '2', '1');
1490 INSERT INTO `0_sys_types` VALUES ('12', 'Receipt', '6', '1');
1491 INSERT INTO `0_sys_types` VALUES ('13', 'Delivery', '1', '1');
1492 INSERT INTO `0_sys_types` VALUES ('16', 'Location Transfer', '2', '1');
1493 INSERT INTO `0_sys_types` VALUES ('17', 'Inventory Adjustment', '2', '1');
1494 INSERT INTO `0_sys_types` VALUES ('18', 'Purchase Order', '1', '1');
1495 INSERT INTO `0_sys_types` VALUES ('20', 'Supplier Invoice', '6', '1');
1496 INSERT INTO `0_sys_types` VALUES ('21', 'Supplier Credit Note', '1', '1');
1497 INSERT INTO `0_sys_types` VALUES ('22', 'Supplier Payment', '3', '1');
1498 INSERT INTO `0_sys_types` VALUES ('25', 'Purchase Order Delivery', '1', '1');
1499 INSERT INTO `0_sys_types` VALUES ('26', 'Work Order', '1', '1');
1500 INSERT INTO `0_sys_types` VALUES ('28', 'Work Order Issue', '1', '1');
1501 INSERT INTO `0_sys_types` VALUES ('29', 'Work Order Production', '1', '1');
1502 INSERT INTO `0_sys_types` VALUES ('30', 'Sales Order', '1', '1');
1503 INSERT INTO `0_sys_types` VALUES ('35', 'Cost Update', '1', '1');
1504 INSERT INTO `0_sys_types` VALUES ('40', 'Dimension', '1', '1');
1505
1506
1507 ### Structure of table `0_tax_group_items` ###
1508
1509 DROP TABLE IF EXISTS `0_tax_group_items`;
1510
1511 CREATE TABLE `0_tax_group_items` (
1512   `tax_group_id` int(11) NOT NULL default '0',
1513   `tax_type_id` int(11) NOT NULL default '0',
1514   `rate` double NOT NULL default '0',
1515   PRIMARY KEY  (`tax_group_id`,`tax_type_id`)
1516 ) TYPE=InnoDB  ;
1517
1518
1519 ### Data of table `0_tax_group_items` ###
1520
1521 INSERT INTO `0_tax_group_items` VALUES ('1', '1', '5');
1522
1523
1524 ### Structure of table `0_tax_groups` ###
1525
1526 DROP TABLE IF EXISTS `0_tax_groups`;
1527
1528 CREATE TABLE `0_tax_groups` (
1529   `id` int(11) NOT NULL auto_increment,
1530   `name` varchar(60) NOT NULL default '',
1531   `tax_shipping` tinyint(1) NOT NULL default '0',
1532   `inactive` tinyint(1) NOT NULL default '0',
1533   PRIMARY KEY  (`id`),
1534   UNIQUE KEY `name` (`name`)
1535 ) TYPE=InnoDB AUTO_INCREMENT=3 ;
1536
1537
1538 ### Data of table `0_tax_groups` ###
1539
1540 INSERT INTO `0_tax_groups` VALUES ('1', 'Tax', '0', '0');
1541 INSERT INTO `0_tax_groups` VALUES ('2', 'Tax Exempt', '0', '0');
1542
1543
1544 ### Structure of table `0_tax_types` ###
1545
1546 DROP TABLE IF EXISTS `0_tax_types`;
1547
1548 CREATE TABLE `0_tax_types` (
1549   `id` int(11) NOT NULL auto_increment,
1550   `rate` double NOT NULL default '0',
1551   `sales_gl_code` varchar(11) NOT NULL default '',
1552   `purchasing_gl_code` varchar(11) NOT NULL default '',
1553   `name` varchar(60) NOT NULL default '',
1554   `inactive` tinyint(1) NOT NULL default '0',
1555   PRIMARY KEY  (`id`),
1556   UNIQUE KEY `name` (`name`,`rate`)
1557 ) TYPE=InnoDB AUTO_INCREMENT=2 ;
1558
1559
1560 ### Data of table `0_tax_types` ###
1561
1562 INSERT INTO `0_tax_types` VALUES ('1', '5', '2150', '2150', 'Tax', '0');
1563
1564
1565 ### Structure of table `0_trans_tax_details` ###
1566
1567 DROP TABLE IF EXISTS `0_trans_tax_details`;
1568
1569 CREATE TABLE `0_trans_tax_details` (
1570   `id` int(11) NOT NULL auto_increment,
1571   `trans_type` smallint(6) default NULL,
1572   `trans_no` int(11) default NULL,
1573   `tran_date` date NOT NULL,
1574   `tax_type_id` int(11) NOT NULL default '0',
1575   `rate` double NOT NULL default '0',
1576   `ex_rate` double NOT NULL default '1',
1577   `included_in_price` tinyint(1) NOT NULL default '0',
1578   `net_amount` double NOT NULL default '0',
1579   `amount` double NOT NULL default '0',
1580   `memo` tinytext,
1581   PRIMARY KEY  (`id`)
1582 ) TYPE=InnoDB AUTO_INCREMENT=1 ;
1583
1584
1585 ### Data of table `0_trans_tax_details` ###
1586
1587
1588
1589 ### Structure of table `0_users` ###
1590
1591 DROP TABLE IF EXISTS `0_users`;
1592
1593 CREATE TABLE `0_users` (
1594   `id` SMALLINT(6) AUTO_INCREMENT,
1595   `user_id` varchar(60) NOT NULL default '',
1596   `password` varchar(100) NOT NULL default '',
1597   `real_name` varchar(100) NOT NULL default '',
1598   `full_access` int(11) NOT NULL default '1',
1599   `phone` varchar(30) NOT NULL default '',
1600   `email` varchar(100) default NULL,
1601   `language` varchar(20) default NULL,
1602   `date_format` tinyint(1) NOT NULL default '0',
1603   `date_sep` tinyint(1) NOT NULL default '0',
1604   `tho_sep` tinyint(1) NOT NULL default '0',
1605   `dec_sep` tinyint(1) NOT NULL default '0',
1606   `theme` varchar(20) NOT NULL default 'default',
1607   `page_size` varchar(20) NOT NULL default 'A4',
1608   `prices_dec` smallint(6) NOT NULL default '2',
1609   `qty_dec` smallint(6) NOT NULL default '2',
1610   `rates_dec` smallint(6) NOT NULL default '4',
1611   `percent_dec` smallint(6) NOT NULL default '1',
1612   `show_gl` tinyint(1) NOT NULL default '1',
1613   `show_codes` tinyint(1) NOT NULL default '0',
1614   `show_hints` tinyint(1) NOT NULL default '0',
1615   `last_visit_date` datetime default NULL,
1616   `query_size` tinyint(1) default '10',
1617   `graphic_links` tinyint(1) default '1',
1618   `pos` smallint(6) default '1',
1619   `print_profile` varchar(30) NOT NULL default '1',
1620   `rep_popup` tinyint(1) default '1',
1621   `sticky_doc_date` tinyint(1) default '0',
1622   `inactive` tinyint(1) NOT NULL default '0',
1623   PRIMARY KEY  (`id`),
1624   UNIQUE KEY  (`user_id`)
1625 ) TYPE=MyISAM  AUTO_INCREMENT=2;
1626
1627
1628 ### Data of table `0_users` ###
1629
1630 INSERT INTO `0_users` VALUES ('1', 'admin', '5f4dcc3b5aa765d61d8327deb882cf99', 'Administrator', '2', '', 'adm@adm.com', 'en_US', '0', '0', '0', '0', 'default', 'Letter', '2', '2', '4', '1', '1', '0', '0', '2008-04-04 12:34:29', '10', '1', '1', '1', '1', '0', '0');
1631
1632 ### Structure of table `0_voided` ###
1633
1634 DROP TABLE IF EXISTS `0_voided`;
1635
1636 CREATE TABLE `0_voided` (
1637   `type` int(11) NOT NULL default '0',
1638   `id` int(11) NOT NULL default '0',
1639   `date_` date NOT NULL default '0000-00-00',
1640   `memo_` tinytext NOT NULL,
1641   UNIQUE KEY `id` (`type`,`id`)
1642 ) TYPE=InnoDB  ;
1643
1644
1645 ### Data of table `0_voided` ###
1646
1647
1648
1649 ### Structure of table `0_wo_issue_items` ###
1650
1651 DROP TABLE IF EXISTS `0_wo_issue_items`;
1652
1653 CREATE TABLE `0_wo_issue_items` (
1654   `id` int(11) NOT NULL auto_increment,
1655   `stock_id` varchar(40) default NULL,
1656   `issue_id` int(11) default NULL,
1657   `qty_issued` double default NULL,
1658   PRIMARY KEY  (`id`)
1659 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1660
1661
1662 ### Data of table `0_wo_issue_items` ###
1663
1664
1665
1666 ### Structure of table `0_wo_issues` ###
1667
1668 DROP TABLE IF EXISTS `0_wo_issues`;
1669
1670 CREATE TABLE `0_wo_issues` (
1671   `issue_no` int(11) NOT NULL auto_increment,
1672   `workorder_id` int(11) NOT NULL default '0',
1673   `reference` varchar(100) default NULL,
1674   `issue_date` date default NULL,
1675   `loc_code` varchar(5) default NULL,
1676   `workcentre_id` int(11) default NULL,
1677   PRIMARY KEY  (`issue_no`)
1678 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1679
1680
1681 ### Data of table `0_wo_issues` ###
1682
1683
1684
1685 ### Structure of table `0_wo_manufacture` ###
1686
1687 DROP TABLE IF EXISTS `0_wo_manufacture`;
1688
1689 CREATE TABLE `0_wo_manufacture` (
1690   `id` int(11) NOT NULL auto_increment,
1691   `reference` varchar(100) default NULL,
1692   `workorder_id` int(11) NOT NULL default '0',
1693   `quantity` double NOT NULL default '0',
1694   `date_` date NOT NULL default '0000-00-00',
1695   PRIMARY KEY  (`id`)
1696 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1697
1698
1699 ### Data of table `0_wo_manufacture` ###
1700
1701
1702
1703 ### Structure of table `0_wo_requirements` ###
1704
1705 DROP TABLE IF EXISTS `0_wo_requirements`;
1706
1707 CREATE TABLE `0_wo_requirements` (
1708   `id` int(11) NOT NULL auto_increment,
1709   `workorder_id` int(11) NOT NULL default '0',
1710   `stock_id` char(20) NOT NULL default '',
1711   `workcentre` int(11) NOT NULL default '0',
1712   `units_req` double NOT NULL default '1',
1713   `std_cost` double NOT NULL default '0',
1714   `loc_code` char(5) NOT NULL default '',
1715   `units_issued` double NOT NULL default '0',
1716   PRIMARY KEY  (`id`)
1717 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1718
1719
1720 ### Data of table `0_wo_requirements` ###
1721
1722
1723
1724 ### Structure of table `0_workcentres` ###
1725
1726 DROP TABLE IF EXISTS `0_workcentres`;
1727
1728 CREATE TABLE `0_workcentres` (
1729   `id` int(11) NOT NULL auto_increment,
1730   `name` char(40) NOT NULL default '',
1731   `description` char(50) NOT NULL default '',
1732   `inactive` tinyint(1) NOT NULL default '0',
1733   PRIMARY KEY  (`id`),
1734   UNIQUE KEY `name` (`name`)
1735 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
1736
1737
1738 ### Data of table `0_workcentres` ###
1739
1740
1741
1742 ### Structure of table `0_workorders` ###
1743
1744 DROP TABLE IF EXISTS `0_workorders`;
1745
1746 CREATE TABLE `0_workorders` (
1747   `id` int(11) NOT NULL auto_increment,
1748   `wo_ref` varchar(60) NOT NULL default '',
1749   `loc_code` varchar(5) NOT NULL default '',
1750   `units_reqd` double NOT NULL default '1',
1751   `stock_id` varchar(20) NOT NULL default '',
1752   `date_` date NOT NULL default '0000-00-00',
1753   `type` tinyint(4) NOT NULL default '0',
1754   `required_by` date NOT NULL default '0000-00-00',
1755   `released_date` date NOT NULL default '0000-00-00',
1756   `units_issued` double NOT NULL default '0',
1757   `closed` tinyint(1) NOT NULL default '0',
1758   `released` tinyint(1) NOT NULL default '0',
1759   `additional_costs` double NOT NULL default '0',
1760   PRIMARY KEY  (`id`),
1761   UNIQUE KEY `wo_ref` (`wo_ref`)
1762 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1763
1764
1765 ### Data of table `0_workorders` ###
1766