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