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