46e2248ce4bd115e568442c1d6d057835e052d4c
[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 ### Data of table `0_company` ###
406
407 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');
408
409 ### Structure of table `0_credit_status` ###
410
411 DROP TABLE IF EXISTS `0_credit_status`;
412
413 CREATE TABLE `0_credit_status` (
414   `id` int(11) NOT NULL auto_increment,
415   `reason_description` char(100) NOT NULL default '',
416   `dissallow_invoices` tinyint(1) NOT NULL default '0',
417   `inactive` tinyint(1) NOT NULL default '0',
418   PRIMARY KEY  (`id`),
419   UNIQUE KEY `reason_description` (`reason_description`)
420 ) TYPE=MyISAM AUTO_INCREMENT=5 ;
421
422
423 ### Data of table `0_credit_status` ###
424
425 INSERT INTO `0_credit_status` VALUES ('1', 'Good History', '0', '0');
426 INSERT INTO `0_credit_status` VALUES ('3', 'No more work until payment received', '1', '0');
427 INSERT INTO `0_credit_status` VALUES ('4', 'In liquidation', '1', '0');
428
429
430 ### Structure of table `0_currencies` ###
431
432 DROP TABLE IF EXISTS `0_currencies`;
433
434 CREATE TABLE `0_currencies` (
435   `currency` varchar(60) NOT NULL default '',
436   `curr_abrev` char(3) NOT NULL default '',
437   `curr_symbol` varchar(10) NOT NULL default '',
438   `country` varchar(100) NOT NULL default '',
439   `hundreds_name` varchar(15) NOT NULL default '',
440   `auto_update` tinyint(1) NOT NULL default '1',
441   `inactive` tinyint(1) NOT NULL default '0',
442   PRIMARY KEY  (`curr_abrev`)
443 ) TYPE=MyISAM  ;
444
445
446 ### Data of table `0_currencies` ###
447
448 INSERT INTO `0_currencies` VALUES ('US Dollars', 'USD', '$', 'United States', 'Cents', '1', '0');
449 INSERT INTO `0_currencies` VALUES ('CA Dollars', 'CAD', '$', 'Canada', 'Cents', '1', '0');
450 INSERT INTO `0_currencies` VALUES ('Euro', 'EUR', '?', 'Europe', 'Cents', '1', '0');
451 INSERT INTO `0_currencies` VALUES ('Pounds', 'GBP', '?', 'England', 'Pence', '1', '0');
452
453 ### Structure of table `0_cust_allocations` ###
454
455 DROP TABLE IF EXISTS `0_cust_allocations`;
456
457 CREATE TABLE `0_cust_allocations` (
458   `id` int(11) NOT NULL auto_increment,
459   `amt` double unsigned default NULL,
460   `date_alloc` date NOT NULL default '0000-00-00',
461   `trans_no_from` int(11) default NULL,
462   `trans_type_from` int(11) default NULL,
463   `trans_no_to` int(11) default NULL,
464   `trans_type_to` int(11) default NULL,
465   PRIMARY KEY  (`id`),
466   KEY `From` (`trans_type_from`, `trans_no_from`),
467   KEY `To` (`trans_type_to`, `trans_no_to`)
468 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
469
470
471 ### Data of table `0_cust_allocations` ###
472
473
474
475 ### Structure of table `0_cust_branch` ###
476
477 DROP TABLE IF EXISTS `0_cust_branch`;
478
479 CREATE TABLE `0_cust_branch` (
480   `branch_code` int(11) NOT NULL auto_increment,
481   `debtor_no` int(11) NOT NULL default '0',
482   `br_name` varchar(60) NOT NULL default '',
483   `branch_ref`  varchar(30) NOT NULL default '',
484   `br_address` tinytext NOT NULL,
485   `area` int(11) default NULL,
486   `salesman` int(11) NOT NULL default '0',
487   `phone` varchar(30) NOT NULL default '',
488   `phone2` varchar(30) NOT NULL default '',
489   `fax` varchar(30) NOT NULL default '',
490   `contact_name` varchar(60) NOT NULL default '',
491   `email` varchar(100) NOT NULL default '',
492   `default_location` varchar(5) NOT NULL default '',
493   `tax_group_id` int(11) default NULL,
494   `sales_account` varchar(11) default NULL,
495   `sales_discount_account` varchar(11) default NULL,
496   `receivables_account` varchar(11) default NULL,
497   `payment_discount_account` varchar(11) default NULL,
498   `default_ship_via` int(11) NOT NULL default '1',
499   `disable_trans` tinyint(4) NOT NULL default '0',
500   `br_post_address` tinytext NOT NULL,
501   `group_no` int(11) NOT NULL default '0',
502   `notes` tinytext NOT NULL,
503   `inactive` tinyint(1) NOT NULL default '0',
504   PRIMARY KEY  (`branch_code`,`debtor_no`),
505   KEY `branch_code` (`branch_code`),
506   KEY (`branch_ref`),
507   KEY (`group_no`)
508 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
509
510
511 ### Data of table `0_cust_branch` ###
512
513
514
515 ### Structure of table `0_debtor_trans` ###
516
517 DROP TABLE IF EXISTS `0_debtor_trans`;
518
519 CREATE TABLE `0_debtor_trans` (
520   `trans_no` int(11) unsigned NOT NULL default '0',
521   `type` smallint(6) unsigned NOT NULL default '0',
522   `version` tinyint(1) unsigned NOT NULL default '0',
523   `debtor_no` int(11) unsigned default NULL,
524   `branch_code` int(11) NOT NULL default '-1',
525   `tran_date` date NOT NULL default '0000-00-00',
526   `due_date` date NOT NULL default '0000-00-00',
527   `reference` varchar(60) NOT NULL default '',
528   `tpe` int(11) NOT NULL default '0',
529   `order_` int(11) NOT NULL default '0',
530   `ov_amount` double NOT NULL default '0',
531   `ov_gst` double NOT NULL default '0',
532   `ov_freight` double NOT NULL default '0',
533   `ov_freight_tax` double NOT NULL default '0',
534   `ov_discount` double NOT NULL default '0',
535   `alloc` double NOT NULL default '0',
536   `rate` double NOT NULL default '1',
537   `ship_via` int(11) default NULL,
538   `trans_link` int(11) NOT NULL default '0',
539   `dimension_id` int(11) NOT NULL default '0',
540   `dimension2_id` int(11) NOT NULL default '0',
541   PRIMARY KEY  (`type`, `trans_no`),
542   KEY `debtor_no` (`debtor_no`,`branch_code`),
543   KEY (`tran_date`)
544 ) TYPE=InnoDB  ;
545
546
547 ### Data of table `0_debtor_trans` ###
548
549
550
551 ### Structure of table `0_debtor_trans_details` ###
552
553 DROP TABLE IF EXISTS `0_debtor_trans_details`;
554
555 CREATE TABLE `0_debtor_trans_details` (
556   `id` int(11) NOT NULL auto_increment,
557   `debtor_trans_no` int(11) default NULL,
558   `debtor_trans_type` int(11) default NULL,
559   `stock_id` varchar(20) NOT NULL default '',
560   `description` tinytext,
561   `unit_price` double NOT NULL default '0',
562   `unit_tax` double NOT NULL default '0',
563   `quantity` double NOT NULL default '0',
564   `discount_percent` double NOT NULL default '0',
565   `standard_cost` double NOT NULL default '0',
566   `qty_done` double NOT NULL default '0',
567   PRIMARY KEY  (`id`),
568   KEY `Transaction` (`debtor_trans_type`, `debtor_trans_no`)
569 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
570
571
572 ### Data of table `0_debtor_trans_details` ###
573
574
575
576 ### Structure of table `0_debtors_master` ###
577
578 DROP TABLE IF EXISTS `0_debtors_master`;
579
580 CREATE TABLE `0_debtors_master` (
581   `debtor_no` int(11) NOT NULL auto_increment,
582   `name` varchar(100) NOT NULL default '',
583   `debtor_ref` varchar(30) NOT NULL,
584   `address` tinytext,
585   `email` varchar(100) NOT NULL default '',
586   `tax_id` varchar(55) NOT NULL default '',
587   `curr_code` char(3) NOT NULL default '',
588   `sales_type` int(11) NOT NULL default '1',
589   `dimension_id` int(11) NOT NULL default '0',
590   `dimension2_id` int(11) NOT NULL default '0',
591   `credit_status` int(11) NOT NULL default '0',
592   `payment_terms` int(11) default NULL,
593   `discount` double NOT NULL default '0',
594   `pymt_discount` double NOT NULL default '0',
595   `credit_limit` float NOT NULL default '1000',
596   `notes` tinytext NOT NULL,
597   `inactive` tinyint(1) NOT NULL default '0',
598   PRIMARY KEY  (`debtor_no`),
599   UNIQUE KEY `name` (`name`),
600   KEY (`debtor_ref`)
601 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
602
603
604 ### Data of table `0_debtors_master` ###
605
606
607
608 ### Structure of table `0_dimensions` ###
609
610 DROP TABLE IF EXISTS `0_dimensions`;
611
612 CREATE TABLE `0_dimensions` (
613   `id` int(11) NOT NULL auto_increment,
614   `reference` varchar(60) NOT NULL default '',
615   `name` varchar(60) NOT NULL default '',
616   `type_` tinyint(1) NOT NULL default '1',
617   `closed` tinyint(1) NOT NULL default '0',
618   `date_` date NOT NULL default '0000-00-00',
619   `due_date` date NOT NULL default '0000-00-00',
620   PRIMARY KEY  (`id`),
621   UNIQUE KEY `reference` (`reference`),
622   KEY (`date_`),
623   KEY (`due_date`),
624   KEY (`type_`)
625 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
626
627
628 ### Data of table `0_dimensions` ###
629
630
631
632 ### Structure of table `0_exchange_rates` ###
633
634 DROP TABLE IF EXISTS `0_exchange_rates`;
635
636 CREATE TABLE `0_exchange_rates` (
637   `id` int(11) NOT NULL auto_increment,
638   `curr_code` char(3) NOT NULL default '',
639   `rate_buy` double NOT NULL default '0',
640   `rate_sell` double NOT NULL default '0',
641   `date_` date NOT NULL default '0000-00-00',
642   PRIMARY KEY  (`id`),
643   UNIQUE KEY `curr_code` (`curr_code`,`date_`)
644 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
645
646
647 ### Data of table `0_exchange_rates` ###
648
649
650
651 ### Structure of table `0_fiscal_year` ###
652
653 DROP TABLE IF EXISTS `0_fiscal_year`;
654
655 CREATE TABLE `0_fiscal_year` (
656   `id` int(11) NOT NULL auto_increment,
657   `begin` date default '0000-00-00',
658   `end` date default '0000-00-00',
659   `closed` tinyint(1) NOT NULL default '0',
660   PRIMARY KEY  (`id`),
661   UNIQUE KEY(`begin`),
662   UNIQUE KEY(`end`)
663 ) TYPE=InnoDB AUTO_INCREMENT=2 ;
664
665
666 ### Data of table `0_fiscal_year` ###
667
668 INSERT INTO `0_fiscal_year` VALUES ('1', '2008-01-01', '2008-12-31', '0');
669
670
671 ### Structure of table `0_gl_trans` ###
672
673 DROP TABLE IF EXISTS `0_gl_trans`;
674
675 CREATE TABLE `0_gl_trans` (
676   `counter` int(11) NOT NULL auto_increment,
677   `type` smallint(6) NOT NULL default '0',
678   `type_no` bigint(16) NOT NULL default '1',
679   `tran_date` date NOT NULL default '0000-00-00',
680   `account` varchar(11) NOT NULL default '',
681   `memo_` tinytext NOT NULL,
682   `amount` double NOT NULL default '0',
683   `dimension_id` int(11) NOT NULL default '0',
684   `dimension2_id` int(11) NOT NULL default '0',
685   `person_type_id` int(11) default NULL,
686   `person_id` tinyblob,
687   PRIMARY KEY  (`counter`),
688   KEY `Type_and_Number` (`type`,`type_no`),
689   KEY (`dimension_id`),
690   KEY (`dimension2_id`),
691   KEY (`tran_date`),
692   KEY `account_and_tran_date` (`account`,`tran_date`)
693 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
694
695
696 ### Data of table `0_gl_trans` ###
697
698
699
700 ### Structure of table `0_grn_batch` ###
701
702 DROP TABLE IF EXISTS `0_grn_batch`;
703
704 CREATE TABLE `0_grn_batch` (
705   `id` int(11) NOT NULL auto_increment,
706   `supplier_id` int(11) NOT NULL default '0',
707   `purch_order_no` int(11) default NULL,
708   `reference` varchar(60) NOT NULL default '',
709   `delivery_date` date NOT NULL default '0000-00-00',
710   `loc_code` varchar(5) default NULL,
711   PRIMARY KEY  (`id`),
712   KEY(`delivery_date`),
713   KEY(`purch_order_no`)
714 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
715
716
717 ### Data of table `0_grn_batch` ###
718
719
720
721 ### Structure of table `0_grn_items` ###
722
723 DROP TABLE IF EXISTS `0_grn_items`;
724
725 CREATE TABLE `0_grn_items` (
726   `id` int(11) NOT NULL auto_increment,
727   `grn_batch_id` int(11) default NULL,
728   `po_detail_item` int(11) NOT NULL default '0',
729   `item_code` varchar(20) NOT NULL default '',
730   `description` tinytext,
731   `qty_recd` double NOT NULL default '0',
732   `quantity_inv` double NOT NULL default '0',
733   PRIMARY KEY  (`id`),
734   KEY (`grn_batch_id`)
735 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
736
737
738 ### Data of table `0_grn_items` ###
739
740
741
742 ### Structure of table `0_groups` ###
743
744 DROP TABLE IF EXISTS `0_groups`;
745
746 CREATE TABLE `0_groups` (
747   `id` smallint(6) unsigned NOT NULL auto_increment,
748   `description` varchar(60) NOT NULL default '',
749   `inactive` tinyint(1) NOT NULL default '0',
750   PRIMARY KEY  (`id`),
751   UNIQUE KEY `description` (`description`)
752 ) TYPE=MyISAM AUTO_INCREMENT=4 ;
753
754
755 ### Data of table `0_groups` ###
756
757 INSERT INTO `0_groups` VALUES ('1', 'Small', '0');
758 INSERT INTO `0_groups` VALUES ('2', 'Medium', '0');
759 INSERT INTO `0_groups` VALUES ('3', 'Large', '0');
760
761
762 ### Structure of table `0_item_codes` ###
763
764 DROP TABLE IF EXISTS `0_item_codes`;
765
766 CREATE TABLE `0_item_codes` (
767   `id` int(11) unsigned NOT NULL auto_increment,
768   `item_code` varchar(20) NOT NULL,
769   `stock_id` varchar(20) NOT NULL,
770   `description` varchar(200) NOT NULL default '',
771   `category_id` smallint(6) unsigned NOT NULL,
772   `quantity` double NOT NULL default '1',
773   `is_foreign` tinyint(1) NOT NULL default '0',
774   `inactive` tinyint(1) NOT NULL default '0',
775   PRIMARY KEY  (`id`),
776   UNIQUE KEY `stock_id` (`stock_id`,`item_code`),
777   KEY (`item_code`)
778 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
779
780
781 ### Data of table `0_item_codes` ###
782
783
784
785 ### Structure of table `0_item_tax_type_exemptions` ###
786
787 DROP TABLE IF EXISTS `0_item_tax_type_exemptions`;
788
789 CREATE TABLE `0_item_tax_type_exemptions` (
790   `item_tax_type_id` int(11) NOT NULL default '0',
791   `tax_type_id` int(11) NOT NULL default '0',
792   PRIMARY KEY  (`item_tax_type_id`,`tax_type_id`)
793 ) TYPE=InnoDB  ;
794
795
796 ### Data of table `0_item_tax_type_exemptions` ###
797
798
799
800 ### Structure of table `0_item_tax_types` ###
801
802 DROP TABLE IF EXISTS `0_item_tax_types`;
803
804 CREATE TABLE `0_item_tax_types` (
805   `id` int(11) NOT NULL auto_increment,
806   `name` varchar(60) NOT NULL default '',
807   `exempt` tinyint(1) NOT NULL default '0',
808   `inactive` tinyint(1) NOT NULL default '0',
809   PRIMARY KEY  (`id`),
810   UNIQUE KEY `name` (`name`)
811 ) TYPE=InnoDB AUTO_INCREMENT=2 ;
812
813
814 ### Data of table `0_item_tax_types` ###
815
816 INSERT INTO `0_item_tax_types` VALUES ('1', 'Regular', '0', '0');
817
818
819 ### Structure of table `0_item_units` ###
820
821 DROP TABLE IF EXISTS `0_item_units`;
822
823 CREATE TABLE `0_item_units` (
824   `abbr` varchar(20) NOT NULL,
825   `name` varchar(40) NOT NULL,
826   `decimals` tinyint(2) NOT NULL,
827   `inactive` tinyint(1) NOT NULL default '0',
828   PRIMARY KEY  (`abbr`),
829   UNIQUE KEY `name` (`name`)
830 ) TYPE=MyISAM  ;
831
832
833 ### Data of table `0_item_units` ###
834
835 INSERT INTO `0_item_units` VALUES ('ea.', 'Each', '0', '0');
836
837
838 ### Structure of table `0_loc_stock` ###
839
840 DROP TABLE IF EXISTS `0_loc_stock`;
841
842 CREATE TABLE `0_loc_stock` (
843   `loc_code` char(5) NOT NULL default '',
844   `stock_id` char(20) NOT NULL default '',
845   `reorder_level` bigint(20) NOT NULL default '0',
846   PRIMARY KEY  (`loc_code`,`stock_id`),
847   KEY `stock_id` (`stock_id`)
848 ) TYPE=InnoDB  ;
849
850
851 ### Data of table `0_loc_stock` ###
852
853
854
855 ### Structure of table `0_locations` ###
856
857 DROP TABLE IF EXISTS `0_locations`;
858
859 CREATE TABLE `0_locations` (
860   `loc_code` varchar(5) NOT NULL default '',
861   `location_name` varchar(60) NOT NULL default '',
862   `delivery_address` tinytext NOT NULL,
863   `phone` varchar(30) NOT NULL default '',
864   `phone2` varchar(30) NOT NULL default '',
865   `fax` varchar(30) NOT NULL default '',
866   `email` varchar(100) NOT NULL default '',
867   `contact` varchar(30) NOT NULL default '',
868   `inactive` tinyint(1) NOT NULL default '0',
869   PRIMARY KEY  (`loc_code`)
870 ) TYPE=MyISAM  ;
871
872
873 ### Data of table `0_locations` ###
874
875 INSERT INTO `0_locations` VALUES ('DEF', 'Default', 'N/A', '', '', '', '', '', '0');
876
877
878 ### Structure of table `0_movement_types` ###
879
880 DROP TABLE IF EXISTS `0_movement_types`;
881
882 CREATE TABLE `0_movement_types` (
883   `id` int(11) NOT NULL auto_increment,
884   `name` varchar(60) NOT NULL default '',
885   `inactive` tinyint(1) NOT NULL default '0',
886   PRIMARY KEY  (`id`),
887   UNIQUE KEY `name` (`name`)
888 ) TYPE=MyISAM AUTO_INCREMENT=2 ;
889
890
891 ### Data of table `0_movement_types` ###
892
893 INSERT INTO `0_movement_types` VALUES ('1', 'Adjustment', '0');
894
895
896 ### Structure of table `0_payment_terms` ###
897
898 DROP TABLE IF EXISTS `0_payment_terms`;
899
900 CREATE TABLE `0_payment_terms` (
901   `terms_indicator` int(11) NOT NULL auto_increment,
902   `terms` char(80) NOT NULL default '',
903   `days_before_due` smallint(6) NOT NULL default '0',
904   `day_in_following_month` smallint(6) NOT NULL default '0',
905   `inactive` tinyint(1) NOT NULL default '0',
906   PRIMARY KEY  (`terms_indicator`),
907   UNIQUE KEY `terms` (`terms`)
908 ) TYPE=MyISAM AUTO_INCREMENT=5 ;
909
910
911 ### Data of table `0_payment_terms` ###
912
913 INSERT INTO `0_payment_terms` VALUES ('1', 'Due 15th Of the Following Month', '0', '17', '0');
914 INSERT INTO `0_payment_terms` VALUES ('2', 'Due By End Of The Following Month', '0', '30', '0');
915 INSERT INTO `0_payment_terms` VALUES ('3', 'Payment due within 10 days', '10', '0', '0');
916 INSERT INTO `0_payment_terms` VALUES ('4', 'Cash Only', '1', '0', '0');
917
918
919 ### Structure of table `0_prices` ###
920
921 DROP TABLE IF EXISTS `0_prices`;
922
923 CREATE TABLE `0_prices` (
924   `id` int(11) NOT NULL auto_increment,
925   `stock_id` varchar(20) NOT NULL default '',
926   `sales_type_id` int(11) NOT NULL default '0',
927   `curr_abrev` char(3) NOT NULL default '',
928   `price` double NOT NULL default '0',
929   PRIMARY KEY  (`id`),
930   UNIQUE KEY `price` (`stock_id`,`sales_type_id`,`curr_abrev`)
931 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
932
933
934 ### Data of table `0_prices` ###
935
936
937
938 ### Structure of table `0_print_profiles` ###
939
940 DROP TABLE IF EXISTS `0_print_profiles`;
941
942 CREATE TABLE `0_print_profiles` (
943   `id` smallint(6) unsigned NOT NULL auto_increment,
944   `profile` varchar(30) NOT NULL,
945   `report` varchar(5) default NULL,
946   `printer` tinyint(3) unsigned default NULL,
947   PRIMARY KEY  (`id`),
948   UNIQUE KEY `profile` (`profile`,`report`)
949 ) TYPE=MyISAM AUTO_INCREMENT=10 ;
950
951
952 ### Data of table `0_print_profiles` ###
953
954 INSERT INTO `0_print_profiles` VALUES ('1', 'Out of office', '', '0');
955 INSERT INTO `0_print_profiles` VALUES ('2', 'Sales Department', '', '0');
956 INSERT INTO `0_print_profiles` VALUES ('3', 'Central', '', '2');
957 INSERT INTO `0_print_profiles` VALUES ('4', 'Sales Department', '104', '2');
958 INSERT INTO `0_print_profiles` VALUES ('5', 'Sales Department', '105', '2');
959 INSERT INTO `0_print_profiles` VALUES ('6', 'Sales Department', '107', '2');
960 INSERT INTO `0_print_profiles` VALUES ('7', 'Sales Department', '109', '2');
961 INSERT INTO `0_print_profiles` VALUES ('8', 'Sales Department', '110', '2');
962 INSERT INTO `0_print_profiles` VALUES ('9', 'Sales Department', '201', '2');
963
964
965 ### Structure of table `0_printers` ###
966
967 DROP TABLE IF EXISTS `0_printers`;
968
969 CREATE TABLE `0_printers` (
970   `id` tinyint(3) unsigned NOT NULL auto_increment,
971   `name` varchar(20) NOT NULL,
972   `description` varchar(60) NOT NULL,
973   `queue` varchar(20) NOT NULL,
974   `host` varchar(40) NOT NULL,
975   `port` smallint(11) unsigned NOT NULL,
976   `timeout` tinyint(3) unsigned NOT NULL,
977   PRIMARY KEY  (`id`),
978   UNIQUE KEY `name` (`name`)
979 ) TYPE=MyISAM AUTO_INCREMENT=4 ;
980
981
982 ### Data of table `0_printers` ###
983
984 INSERT INTO `0_printers` VALUES ('1', 'QL500', 'Label printer', 'QL500', 'server', '127', '20');
985 INSERT INTO `0_printers` VALUES ('2', 'Samsung', 'Main network printer', 'scx4521F', 'server', '515', '5');
986 INSERT INTO `0_printers` VALUES ('3', 'Local', 'Local print server at user IP', 'lp', '', '515', '10');
987
988
989 ### Structure of table `0_purch_data` ###
990
991 DROP TABLE IF EXISTS `0_purch_data`;
992
993 CREATE TABLE `0_purch_data` (
994   `supplier_id` int(11) NOT NULL default '0',
995   `stock_id` char(20) NOT NULL default '',
996   `price` double NOT NULL default '0',
997   `suppliers_uom` char(50) NOT NULL default '',
998   `conversion_factor` double NOT NULL default '1',
999   `supplier_description` char(50) NOT NULL default '',
1000   PRIMARY KEY  (`supplier_id`,`stock_id`)
1001 ) TYPE=MyISAM  ;
1002
1003
1004 ### Data of table `0_purch_data` ###
1005
1006
1007
1008 ### Structure of table `0_purch_order_details` ###
1009
1010 DROP TABLE IF EXISTS `0_purch_order_details`;
1011
1012 CREATE TABLE `0_purch_order_details` (
1013   `po_detail_item` int(11) NOT NULL auto_increment,
1014   `order_no` int(11) NOT NULL default '0',
1015   `item_code` varchar(20) NOT NULL default '',
1016   `description` tinytext,
1017   `delivery_date` date NOT NULL default '0000-00-00',
1018   `qty_invoiced` double NOT NULL default '0',
1019   `unit_price` double NOT NULL default '0',
1020   `act_price` double NOT NULL default '0',
1021   `std_cost_unit` double NOT NULL default '0',
1022   `quantity_ordered` double NOT NULL default '0',
1023   `quantity_received` double NOT NULL default '0',
1024   PRIMARY KEY  (`po_detail_item`),
1025   KEY `order` (`order_no`, `po_detail_item`)
1026 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1027
1028
1029 ### Data of table `0_purch_order_details` ###
1030
1031
1032
1033 ### Structure of table `0_purch_orders` ###
1034
1035 DROP TABLE IF EXISTS `0_purch_orders`;
1036
1037 CREATE TABLE `0_purch_orders` (
1038   `order_no` int(11) NOT NULL auto_increment,
1039   `supplier_id` int(11) NOT NULL default '0',
1040   `comments` tinytext,
1041   `ord_date` date NOT NULL default '0000-00-00',
1042   `reference` tinytext NOT NULL,
1043   `requisition_no` tinytext,
1044   `into_stock_location` varchar(5) NOT NULL default '',
1045   `delivery_address` tinytext NOT NULL,
1046   PRIMARY KEY  (`order_no`),
1047   KEY (`ord_date`)
1048 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1049
1050
1051 ### Data of table `0_purch_orders` ###
1052
1053
1054
1055 ### Structure of table `0_quick_entries` ###
1056
1057 DROP TABLE IF EXISTS `0_quick_entries`;
1058
1059 CREATE TABLE `0_quick_entries` (
1060   `id` smallint(6) unsigned NOT NULL auto_increment,
1061   `type` tinyint(1) NOT NULL default '0',
1062   `description` varchar(60) NOT NULL,
1063   `base_amount` double NOT NULL default '0',
1064   `base_desc` varchar(60) default NULL,
1065   `bal_type` tinyint(1) NOT NULL default '0',
1066   PRIMARY KEY  (`id`),
1067   KEY `description` (`description`)
1068 ) TYPE=MyISAM AUTO_INCREMENT=4 ;
1069
1070
1071 ### Data of table `0_quick_entries` ###
1072
1073 INSERT INTO `0_quick_entries` VALUES ('1', '1', 'Maintenance', '0', 'Amount', '0');
1074 INSERT INTO `0_quick_entries` VALUES ('2', '4', 'Phone', '0', 'Amount', '0');
1075 INSERT INTO `0_quick_entries` VALUES ('3', '2', 'Cash Sales', '0', 'Amount', '0');
1076
1077
1078 ### Structure of table `0_quick_entry_lines` ###
1079
1080 DROP TABLE IF EXISTS `0_quick_entry_lines`;
1081
1082 CREATE TABLE `0_quick_entry_lines` (
1083   `id` smallint(6) unsigned NOT NULL auto_increment,
1084   `qid` smallint(6) unsigned NOT NULL,
1085   `amount` double default '0',
1086   `action` varchar(2) NOT NULL,
1087   `dest_id` varchar(11) NOT NULL,
1088   `dimension_id` smallint(6) unsigned default NULL,
1089   `dimension2_id` smallint(6) unsigned default NULL,
1090   PRIMARY KEY  (`id`),
1091   KEY `qid` (`qid`)
1092 ) TYPE=MyISAM AUTO_INCREMENT=7 ;
1093
1094
1095 ### Data of table `0_quick_entry_lines` ###
1096
1097 INSERT INTO `0_quick_entry_lines` VALUES ('1', '1', '0', 't-', '1', '0', '0');
1098 INSERT INTO `0_quick_entry_lines` VALUES ('2', '2', '0', 't-', '1', '0', '0');
1099 INSERT INTO `0_quick_entry_lines` VALUES ('3', '3', '0', 't-', '1', '0', '0');
1100 INSERT INTO `0_quick_entry_lines` VALUES ('4', '3', '0', '=', '4010', '0', '0');
1101 INSERT INTO `0_quick_entry_lines` VALUES ('5', '1', '0', '=', '5765', '0', '0');
1102 INSERT INTO `0_quick_entry_lines` VALUES ('6', '2', '0', '=', '5780', '0', '0');
1103
1104
1105 ### Structure of table `0_recurrent_invoices` ###
1106
1107 DROP TABLE IF EXISTS `0_recurrent_invoices`;
1108
1109 CREATE TABLE `0_recurrent_invoices` (
1110   `id` smallint(6) unsigned NOT NULL auto_increment,
1111   `description` varchar(60) NOT NULL default '',
1112   `order_no` int(11) unsigned NOT NULL,
1113   `debtor_no` int(11) unsigned default NULL,
1114   `group_no` smallint(6) unsigned default NULL,
1115   `days` int(11) NOT NULL default '0',
1116   `monthly` int(11) NOT NULL default '0',
1117   `begin` date NOT NULL default '0000-00-00',
1118   `end` date NOT NULL default '0000-00-00',
1119   `last_sent` date NOT NULL default '0000-00-00',
1120   PRIMARY KEY  (`id`),
1121   UNIQUE KEY `description` (`description`)
1122 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1123
1124
1125 ### Data of table `0_recurrent_invoices` ###
1126
1127
1128
1129 ### Structure of table `0_refs` ###
1130
1131 DROP TABLE IF EXISTS `0_refs`;
1132
1133 CREATE TABLE `0_refs` (
1134   `id` int(11) NOT NULL default '0',
1135   `type` int(11) NOT NULL default '0',
1136   `reference` varchar(100) NOT NULL default '',
1137   PRIMARY KEY  (`id`,`type`),
1138   KEY `Type_and_Reference` (`type`,`reference`)
1139 ) TYPE=InnoDB  ;
1140
1141
1142 ### Data of table `0_refs` ###
1143
1144
1145
1146 ### Structure of table `0_sales_order_details` ###
1147
1148 DROP TABLE IF EXISTS `0_sales_order_details`;
1149
1150 CREATE TABLE `0_sales_order_details` (
1151   `id` int(11) NOT NULL auto_increment,
1152   `order_no` int(11) NOT NULL default '0',
1153   `trans_type` smallint(6) NOT NULL default '30',
1154   `stk_code` varchar(20) NOT NULL default '',
1155   `description` tinytext,
1156   `qty_sent` double NOT NULL default '0',
1157   `unit_price` double NOT NULL default '0',
1158   `quantity` double NOT NULL default '0',
1159   `discount_percent` double NOT NULL default '0',
1160   PRIMARY KEY  (`id`),
1161   KEY `sorder` (`trans_type`, `order_no`)
1162 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1163
1164
1165 ### Data of table `0_sales_order_details` ###
1166
1167
1168
1169 ### Structure of table `0_sales_orders` ###
1170
1171 DROP TABLE IF EXISTS `0_sales_orders`;
1172
1173 CREATE TABLE `0_sales_orders` (
1174   `order_no` int(11) NOT NULL,
1175   `trans_type` smallint(6) NOT NULL default '30',
1176   `version` tinyint(1) unsigned NOT NULL default '0',
1177   `type` tinyint(1) NOT NULL default '0',
1178   `debtor_no` int(11) NOT NULL default '0',
1179   `branch_code` int(11) NOT NULL default '0',
1180   `reference` varchar(100) NOT NULL default '',
1181   `customer_ref` tinytext NOT NULL,
1182   `comments` tinytext,
1183   `ord_date` date NOT NULL default '0000-00-00',
1184   `order_type` int(11) NOT NULL default '0',
1185   `ship_via` int(11) NOT NULL default '0',
1186   `delivery_address` tinytext NOT NULL,
1187   `contact_phone` varchar(30) default NULL,
1188   `contact_email` varchar(100) default NULL,
1189   `deliver_to` tinytext NOT NULL,
1190   `freight_cost` double NOT NULL default '0',
1191   `from_stk_loc` varchar(5) NOT NULL default '',
1192   `delivery_date` date NOT NULL default '0000-00-00',
1193   PRIMARY KEY  (`trans_type`, `order_no`)
1194 ) TYPE=InnoDB;
1195
1196
1197 ### Data of table `0_sales_orders` ###
1198
1199
1200
1201 ### Structure of table `0_sales_pos` ###
1202
1203 DROP TABLE IF EXISTS `0_sales_pos`;
1204
1205 CREATE TABLE `0_sales_pos` (
1206   `id` smallint(6) unsigned NOT NULL auto_increment,
1207   `pos_name` varchar(30) NOT NULL,
1208   `cash_sale` tinyint(1) NOT NULL,
1209   `credit_sale` tinyint(1) NOT NULL,
1210   `pos_location` varchar(5) NOT NULL,
1211   `pos_account` smallint(6) unsigned NOT NULL,
1212   `inactive` tinyint(1) NOT NULL default '0',
1213   PRIMARY KEY  (`id`),
1214   UNIQUE KEY `pos_name` (`pos_name`)
1215 ) TYPE=MyISAM AUTO_INCREMENT=2 ;
1216
1217
1218 ### Data of table `0_sales_pos` ###
1219
1220 INSERT INTO `0_sales_pos` VALUES ('1', 'Default', '1', '1', 'DEF', '2', '0');
1221
1222
1223 ### Structure of table `0_sales_types` ###
1224
1225 DROP TABLE IF EXISTS `0_sales_types`;
1226
1227 CREATE TABLE `0_sales_types` (
1228   `id` int(11) NOT NULL auto_increment,
1229   `sales_type` char(50) NOT NULL default '',
1230   `tax_included` int(1) NOT NULL default '0',
1231   `factor` double NOT NULL default '1',
1232   `inactive` tinyint(1) NOT NULL default '0',
1233   PRIMARY KEY  (`id`),
1234   UNIQUE KEY `sales_type` (`sales_type`)
1235 ) TYPE=MyISAM AUTO_INCREMENT=3 ;
1236
1237
1238 ### Data of table `0_sales_types` ###
1239
1240 INSERT INTO `0_sales_types` VALUES ('1', 'Retail', '1', '1', '0');
1241 INSERT INTO `0_sales_types` VALUES ('2', 'Wholesale', '0', '0.7', '0');
1242
1243
1244 ### Structure of table `0_salesman` ###
1245
1246 DROP TABLE IF EXISTS `0_salesman`;
1247
1248 CREATE TABLE `0_salesman` (
1249   `salesman_code` int(11) NOT NULL auto_increment,
1250   `salesman_name` char(60) NOT NULL default '',
1251   `salesman_phone` char(30) NOT NULL default '',
1252   `salesman_fax` char(30) NOT NULL default '',
1253   `salesman_email` varchar(100) NOT NULL default '',
1254   `provision` double NOT NULL default '0',
1255   `break_pt` double NOT NULL default '0',
1256   `provision2` double NOT NULL default '0',
1257   `inactive` tinyint(1) NOT NULL default '0',
1258   PRIMARY KEY  (`salesman_code`),
1259   UNIQUE KEY `salesman_name` (`salesman_name`)
1260 ) TYPE=MyISAM AUTO_INCREMENT=2 ;
1261
1262
1263 ### Data of table `0_salesman` ###
1264
1265 INSERT INTO `0_salesman` VALUES ('1', 'Sales Person', '', '', '', '5', '1000', '4', '0');
1266
1267 ### Structure of table `0_security_roles` ###
1268
1269 DROP TABLE IF EXISTS `0_security_roles`;
1270 CREATE TABLE IF NOT EXISTS `0_security_roles` (
1271   `id` int(11) NOT NULL auto_increment,
1272   `role` varchar(30) NOT NULL,
1273   `description` varchar(50) default NULL,
1274   `sections` text,
1275   `areas` text,
1276   `inactive` tinyint(1) NOT NULL default '0',
1277   PRIMARY KEY  (`id`),
1278   UNIQUE KEY `role` (`role`)
1279 ) TYPE=MyISAM  AUTO_INCREMENT=11 ;
1280
1281 --
1282 -- Data of table `0_security_roles`
1283 --
1284
1285 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);
1286 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);
1287 INSERT INTO `0_security_roles` VALUES (3, 'Salesman', 'Salesman', '768;3072;5632;8192;15872', '773;774;3073;3075;3081;5633;8194;15873', 0);
1288 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);
1289 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);
1290 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);
1291 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);
1292 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);
1293 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);
1294 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);
1295
1296 ### Structure of table `0_shippers` ###
1297
1298 DROP TABLE IF EXISTS `0_shippers`;
1299
1300 CREATE TABLE `0_shippers` (
1301   `shipper_id` int(11) NOT NULL auto_increment,
1302   `shipper_name` varchar(60) NOT NULL default '',
1303   `phone` varchar(30) NOT NULL default '',
1304   `phone2` varchar(30) NOT NULL default '',
1305   `contact` tinytext NOT NULL,
1306   `address` tinytext NOT NULL,
1307   `inactive` tinyint(1) NOT NULL default '0',
1308   PRIMARY KEY  (`shipper_id`),
1309   UNIQUE KEY `name` (`shipper_name`)
1310 ) TYPE=MyISAM AUTO_INCREMENT=2 ;
1311
1312
1313 ### Data of table `0_shippers` ###
1314
1315 INSERT INTO `0_shippers` VALUES ('1', 'Default', '', '', '', '', '0');
1316
1317
1318 ### Structure of table `0_sql_trail` ###
1319
1320 DROP TABLE IF EXISTS `0_sql_trail`;
1321
1322 CREATE TABLE `0_sql_trail` (
1323   `id` int(11) unsigned NOT NULL auto_increment,
1324   `sql` text NOT NULL,
1325   `result` tinyint(1) NOT NULL,
1326   `msg` varchar(255) NOT NULL,
1327   PRIMARY KEY  (`id`)
1328 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
1329
1330
1331 ### Data of table `0_sql_trail` ###
1332
1333
1334
1335 ### Structure of table `0_stock_category` ###
1336
1337 DROP TABLE IF EXISTS `0_stock_category`;
1338
1339 CREATE TABLE `0_stock_category` (
1340   `category_id` int(11) NOT NULL auto_increment,
1341   `description` varchar(60) NOT NULL default '',
1342   `dflt_tax_type` int(11) NOT NULL default '1',
1343   `dflt_units` varchar(20) NOT NULL default 'each',
1344   `dflt_mb_flag` char(1) NOT NULL default 'B',
1345   `dflt_sales_act` varchar(11) NOT NULL default '',
1346   `dflt_cogs_act` varchar(11) NOT NULL default '',
1347   `dflt_inventory_act` varchar(11) NOT NULL default '',
1348   `dflt_adjustment_act` varchar(11) NOT NULL default '',
1349   `dflt_assembly_act` varchar(11) NOT NULL default '',
1350   `dflt_dim1` int(11) default NULL,
1351   `dflt_dim2` int(11) default NULL,
1352   `inactive` tinyint(1) NOT NULL default '0',
1353   `dflt_no_sale` tinyint(1) NOT NULL default '0',
1354   PRIMARY KEY  (`category_id`),
1355   UNIQUE KEY `description` (`description`)
1356 ) TYPE=MyISAM AUTO_INCREMENT=5 ;
1357
1358
1359 ### Data of table `0_stock_category` ###
1360
1361 INSERT INTO `0_stock_category` VALUES ('1', 'Components', '1', 'each', 'B', '4010', '5010', '1510', '5040', '1530', '0', '0', '0', '0');
1362 INSERT INTO `0_stock_category` VALUES ('2', 'Charges', '1', 'each', 'D', '4010', '5010', '1510', '5040', '1530', '0', '0', '0', '0');
1363 INSERT INTO `0_stock_category` VALUES ('3', 'Systems', '1', 'each', 'M', '4010', '5010', '1510', '5040', '1530', '0', '0', '0', '0');
1364 INSERT INTO `0_stock_category` VALUES ('4', 'Services', '1', 'hrs', 'D', '4010', '5010', '1510', '5040', '1530', '0', '0', '0', '0');
1365
1366
1367 ### Structure of table `0_stock_master` ###
1368
1369 DROP TABLE IF EXISTS `0_stock_master`;
1370
1371 CREATE TABLE `0_stock_master` (
1372   `stock_id` varchar(20) NOT NULL default '',
1373   `category_id` int(11) NOT NULL default '0',
1374   `tax_type_id` int(11) NOT NULL default '0',
1375   `description` varchar(200) NOT NULL default '',
1376   `long_description` tinytext NOT NULL,
1377   `units` varchar(20) NOT NULL default 'each',
1378   `mb_flag` char(1) NOT NULL default 'B',
1379   `sales_account` varchar(11) NOT NULL default '',
1380   `cogs_account` varchar(11) NOT NULL default '',
1381   `inventory_account` varchar(11) NOT NULL default '',
1382   `adjustment_account` varchar(11) NOT NULL default '',
1383   `assembly_account` varchar(11) NOT NULL default '',
1384   `dimension_id` int(11) default NULL,
1385   `dimension2_id` int(11) default NULL,
1386   `actual_cost` double NOT NULL default '0',
1387   `last_cost` double NOT NULL default '0',
1388   `material_cost` double NOT NULL default '0',
1389   `labour_cost` double NOT NULL default '0',
1390   `overhead_cost` double NOT NULL default '0',
1391   `inactive` tinyint(1) NOT NULL default '0',
1392   `no_sale` tinyint(1) NOT NULL default '0',
1393   PRIMARY KEY  (`stock_id`)
1394 ) TYPE=InnoDB  ;
1395
1396
1397 ### Data of table `0_stock_master` ###
1398
1399
1400
1401 ### Structure of table `0_stock_moves` ###
1402
1403 DROP TABLE IF EXISTS `0_stock_moves`;
1404
1405 CREATE TABLE `0_stock_moves` (
1406   `trans_id` int(11) NOT NULL auto_increment,
1407   `trans_no` int(11) NOT NULL default '0',
1408   `stock_id` char(20) NOT NULL default '',
1409   `type` smallint(6) NOT NULL default '0',
1410   `loc_code` char(5) NOT NULL default '',
1411   `tran_date` date NOT NULL default '0000-00-00',
1412   `person_id` int(11) default NULL,
1413   `price` double NOT NULL default '0',
1414   `reference` char(40) NOT NULL default '',
1415   `qty` double NOT NULL default '1',
1416   `discount_percent` double NOT NULL default '0',
1417   `standard_cost` double NOT NULL default '0',
1418   `visible` tinyint(1) NOT NULL default '1',
1419   PRIMARY KEY  (`trans_id`),
1420   KEY `type` (`type`,`trans_no`),
1421   KEY `Move` (`stock_id`,`loc_code`, `tran_date`)
1422 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1423
1424
1425 ### Data of table `0_stock_moves` ###
1426
1427
1428
1429 ### Structure of table `0_supp_allocations` ###
1430
1431 DROP TABLE IF EXISTS `0_supp_allocations`;
1432
1433 CREATE TABLE `0_supp_allocations` (
1434   `id` int(11) NOT NULL auto_increment,
1435   `amt` double unsigned default NULL,
1436   `date_alloc` date NOT NULL default '0000-00-00',
1437   `trans_no_from` int(11) default NULL,
1438   `trans_type_from` int(11) default NULL,
1439   `trans_no_to` int(11) default NULL,
1440   `trans_type_to` int(11) default NULL,
1441   PRIMARY KEY  (`id`),
1442   KEY `From` (`trans_type_from`, `trans_no_from`),
1443   KEY `To` (`trans_type_to`, `trans_no_to`)
1444 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1445
1446
1447 ### Data of table `0_supp_allocations` ###
1448
1449
1450
1451 ### Structure of table `0_supp_invoice_items` ###
1452
1453 DROP TABLE IF EXISTS `0_supp_invoice_items`;
1454
1455 CREATE TABLE `0_supp_invoice_items` (
1456   `id` int(11) NOT NULL auto_increment,
1457   `supp_trans_no` int(11) default NULL,
1458   `supp_trans_type` int(11) default NULL,
1459   `gl_code` varchar(11) NOT NULL default '0',
1460   `grn_item_id` int(11) default NULL,
1461   `po_detail_item_id` int(11) default NULL,
1462   `stock_id` varchar(20) NOT NULL default '',
1463   `description` tinytext,
1464   `quantity` double NOT NULL default '0',
1465   `unit_price` double NOT NULL default '0',
1466   `unit_tax` double NOT NULL default '0',
1467   `memo_` tinytext,
1468   PRIMARY KEY  (`id`),
1469   KEY `Transaction` (`supp_trans_type`, `supp_trans_no`, `stock_id`)
1470 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1471
1472
1473 ### Data of table `0_supp_invoice_items` ###
1474
1475
1476
1477 ### Structure of table `0_supp_trans` ###
1478
1479 DROP TABLE IF EXISTS `0_supp_trans`;
1480
1481 CREATE TABLE `0_supp_trans` (
1482   `trans_no` int(11) unsigned NOT NULL default '0',
1483   `type` smallint(6) unsigned NOT NULL default '0',
1484   `supplier_id` int(11) unsigned default NULL,
1485   `reference` tinytext NOT NULL,
1486   `supp_reference` varchar(60) NOT NULL default '',
1487   `tran_date` date NOT NULL default '0000-00-00',
1488   `due_date` date NOT NULL default '0000-00-00',
1489   `ov_amount` double NOT NULL default '0',
1490   `ov_discount` double NOT NULL default '0',
1491   `ov_gst` double NOT NULL default '0',
1492   `rate` double NOT NULL default '1',
1493   `alloc` double NOT NULL default '0',
1494   PRIMARY KEY  (`type`, `trans_no`),
1495   KEY `supplier_id` (`supplier_id`),
1496   KEY `SupplierID_2` (`supplier_id`,`supp_reference`),
1497   KEY `type` (`type`),
1498   KEY (`tran_date`)
1499 ) TYPE=InnoDB  ;
1500
1501
1502 ### Data of table `0_supp_trans` ###
1503
1504
1505
1506 ### Structure of table `0_suppliers` ###
1507
1508 DROP TABLE IF EXISTS `0_suppliers`;
1509
1510 CREATE TABLE `0_suppliers` (
1511   `supplier_id` int(11) NOT NULL auto_increment,
1512   `supp_name` varchar(60) NOT NULL default '',
1513   `supp_ref` varchar(30) NOT NULL default '',
1514   `address` tinytext NOT NULL,
1515   `supp_address` tinytext NOT NULL,
1516   `phone` varchar(30) NOT NULL default '',
1517   `phone2` varchar(30) NOT NULL default '',
1518   `fax` varchar(30) NOT NULL default '',
1519   `gst_no` varchar(25) NOT NULL default '',
1520   `contact` varchar(60) NOT NULL default '',
1521   `supp_account_no` varchar(40) NOT NULL default '',
1522   `email` varchar(100) NOT NULL default '',
1523   `website` varchar(100) NOT NULL default '',
1524   `bank_account` varchar(60) NOT NULL default '',
1525   `curr_code` char(3) default NULL,
1526   `payment_terms` int(11) default NULL,
1527   `dimension_id` int(11) default '0',
1528   `dimension2_id` int(11) default '0',
1529   `tax_group_id` int(11) default NULL,
1530   `credit_limit` double NOT NULL default '0',
1531   `purchase_account` varchar(11) default NULL,
1532   `payable_account` varchar(11) default NULL,
1533   `payment_discount_account` varchar(11) default NULL,
1534   `notes` tinytext NOT NULL,
1535   `inactive` tinyint(1) NOT NULL default '0',
1536   PRIMARY KEY  (`supplier_id`),
1537   KEY (`supp_ref`)
1538 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
1539
1540
1541 ### Data of table `0_suppliers` ###
1542
1543
1544
1545 ### Structure of table `0_sys_types` ###
1546
1547 DROP TABLE IF EXISTS `0_sys_types`;
1548
1549 CREATE TABLE `0_sys_types` (
1550   `type_id` smallint(6) NOT NULL default '0',
1551   `type_no` int(11) NOT NULL default '1',
1552   `next_reference` varchar(100) NOT NULL default '',
1553   PRIMARY KEY  (`type_id`)
1554 ) TYPE=InnoDB  ;
1555
1556
1557 ### Data of table `0_sys_types` ###
1558
1559 INSERT INTO `0_sys_types` VALUES ('0', '17', '1');
1560 INSERT INTO `0_sys_types` VALUES ('1', '7', '1');
1561 INSERT INTO `0_sys_types` VALUES ('2', '4', '1');
1562 INSERT INTO `0_sys_types` VALUES ('4', '3', '1');
1563 INSERT INTO `0_sys_types` VALUES ('10', '16', '1');
1564 INSERT INTO `0_sys_types` VALUES ('11', '2', '1');
1565 INSERT INTO `0_sys_types` VALUES ('12', '6', '1');
1566 INSERT INTO `0_sys_types` VALUES ('13', '1', '1');
1567 INSERT INTO `0_sys_types` VALUES ('16', '2', '1');
1568 INSERT INTO `0_sys_types` VALUES ('17', '2', '1');
1569 INSERT INTO `0_sys_types` VALUES ('18', '1', '1');
1570 INSERT INTO `0_sys_types` VALUES ('20', '6', '1');
1571 INSERT INTO `0_sys_types` VALUES ('21', '1', '1');
1572 INSERT INTO `0_sys_types` VALUES ('22', '3', '1');
1573 INSERT INTO `0_sys_types` VALUES ('25', '1', '1');
1574 INSERT INTO `0_sys_types` VALUES ('26', '1', '1');
1575 INSERT INTO `0_sys_types` VALUES ('28', '1', '1');
1576 INSERT INTO `0_sys_types` VALUES ('29', '1', '1');
1577 INSERT INTO `0_sys_types` VALUES ('30', '0', '1');
1578 INSERT INTO `0_sys_types` VALUES ('32', '0', '1');
1579 INSERT INTO `0_sys_types` VALUES ('35', '1', '1');
1580 INSERT INTO `0_sys_types` VALUES ('40', '1', '1');
1581
1582
1583 ### Structure of table `0_tax_group_items` ###
1584
1585 DROP TABLE IF EXISTS `0_tax_group_items`;
1586
1587 CREATE TABLE `0_tax_group_items` (
1588   `tax_group_id` int(11) NOT NULL default '0',
1589   `tax_type_id` int(11) NOT NULL default '0',
1590   `rate` double NOT NULL default '0',
1591   PRIMARY KEY  (`tax_group_id`,`tax_type_id`)
1592 ) TYPE=InnoDB  ;
1593
1594
1595 ### Data of table `0_tax_group_items` ###
1596
1597 INSERT INTO `0_tax_group_items` VALUES ('1', '1', '5');
1598
1599
1600 ### Structure of table `0_tax_groups` ###
1601
1602 DROP TABLE IF EXISTS `0_tax_groups`;
1603
1604 CREATE TABLE `0_tax_groups` (
1605   `id` int(11) NOT NULL auto_increment,
1606   `name` varchar(60) NOT NULL default '',
1607   `tax_shipping` tinyint(1) NOT NULL default '0',
1608   `inactive` tinyint(1) NOT NULL default '0',
1609   PRIMARY KEY  (`id`),
1610   UNIQUE KEY `name` (`name`)
1611 ) TYPE=InnoDB AUTO_INCREMENT=3 ;
1612
1613
1614 ### Data of table `0_tax_groups` ###
1615
1616 INSERT INTO `0_tax_groups` VALUES ('1', 'Tax', '0', '0');
1617 INSERT INTO `0_tax_groups` VALUES ('2', 'Tax Exempt', '0', '0');
1618
1619
1620 ### Structure of table `0_tax_types` ###
1621
1622 DROP TABLE IF EXISTS `0_tax_types`;
1623
1624 CREATE TABLE `0_tax_types` (
1625   `id` int(11) NOT NULL auto_increment,
1626   `rate` double NOT NULL default '0',
1627   `sales_gl_code` varchar(11) NOT NULL default '',
1628   `purchasing_gl_code` varchar(11) NOT NULL default '',
1629   `name` varchar(60) NOT NULL default '',
1630   `inactive` tinyint(1) NOT NULL default '0',
1631   PRIMARY KEY  (`id`)
1632 ) TYPE=InnoDB AUTO_INCREMENT=2 ;
1633
1634
1635 ### Data of table `0_tax_types` ###
1636
1637 INSERT INTO `0_tax_types` VALUES ('1', '5', '2150', '2150', 'Tax', '0');
1638
1639
1640 ### Structure of table `0_trans_tax_details` ###
1641
1642 DROP TABLE IF EXISTS `0_trans_tax_details`;
1643
1644 CREATE TABLE `0_trans_tax_details` (
1645   `id` int(11) NOT NULL auto_increment,
1646   `trans_type` smallint(6) default NULL,
1647   `trans_no` int(11) default NULL,
1648   `tran_date` date NOT NULL,
1649   `tax_type_id` int(11) NOT NULL default '0',
1650   `rate` double NOT NULL default '0',
1651   `ex_rate` double NOT NULL default '1',
1652   `included_in_price` tinyint(1) NOT NULL default '0',
1653   `net_amount` double NOT NULL default '0',
1654   `amount` double NOT NULL default '0',
1655   `memo` tinytext,
1656   PRIMARY KEY  (`id`),
1657   KEY `Type_and_Number` (`trans_type`,`trans_no`),
1658   KEY (`tran_date`)
1659 ) TYPE=InnoDB AUTO_INCREMENT=1 ;
1660
1661
1662 ### Data of table `0_trans_tax_details` ###
1663
1664
1665
1666 ### Structure of table `0_users` ###
1667
1668 DROP TABLE IF EXISTS `0_users`;
1669
1670 CREATE TABLE `0_users` (
1671   `id` SMALLINT(6) AUTO_INCREMENT,
1672   `user_id` varchar(60) NOT NULL default '',
1673   `password` varchar(100) NOT NULL default '',
1674   `real_name` varchar(100) NOT NULL default '',
1675   `role_id` int(11) NOT NULL default '1',
1676   `phone` varchar(30) NOT NULL default '',
1677   `email` varchar(100) default NULL,
1678   `language` varchar(20) default NULL,
1679   `date_format` tinyint(1) NOT NULL default '0',
1680   `date_sep` tinyint(1) NOT NULL default '0',
1681   `tho_sep` tinyint(1) NOT NULL default '0',
1682   `dec_sep` tinyint(1) NOT NULL default '0',
1683   `theme` varchar(20) NOT NULL default 'default',
1684   `page_size` varchar(20) NOT NULL default 'A4',
1685   `prices_dec` smallint(6) NOT NULL default '2',
1686   `qty_dec` smallint(6) NOT NULL default '2',
1687   `rates_dec` smallint(6) NOT NULL default '4',
1688   `percent_dec` smallint(6) NOT NULL default '1',
1689   `show_gl` tinyint(1) NOT NULL default '1',
1690   `show_codes` tinyint(1) NOT NULL default '0',
1691   `show_hints` tinyint(1) NOT NULL default '0',
1692   `last_visit_date` datetime default NULL,
1693   `query_size` tinyint(1) default '10',
1694   `graphic_links` tinyint(1) default '1',
1695   `pos` smallint(6) default '1',
1696   `print_profile` varchar(30) NOT NULL default '1',
1697   `rep_popup` tinyint(1) default '1',
1698   `sticky_doc_date` tinyint(1) default '0',
1699   `startup_tab` varchar(20) NOT NULL default '',
1700   `inactive` tinyint(1) NOT NULL default '0',
1701   PRIMARY KEY  (`id`),
1702   UNIQUE KEY  (`user_id`)
1703 ) TYPE=MyISAM  AUTO_INCREMENT=2;
1704
1705
1706 ### Data of table `0_users` ###
1707
1708 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');
1709
1710 ### Structure of table `0_voided` ###
1711
1712 DROP TABLE IF EXISTS `0_voided`;
1713
1714 CREATE TABLE `0_voided` (
1715   `type` int(11) NOT NULL default '0',
1716   `id` int(11) NOT NULL default '0',
1717   `date_` date NOT NULL default '0000-00-00',
1718   `memo_` tinytext NOT NULL,
1719   UNIQUE KEY `id` (`type`,`id`)
1720 ) TYPE=InnoDB  ;
1721
1722
1723 ### Data of table `0_voided` ###
1724
1725
1726
1727 ### Structure of table `0_wo_issue_items` ###
1728
1729 DROP TABLE IF EXISTS `0_wo_issue_items`;
1730
1731 CREATE TABLE `0_wo_issue_items` (
1732   `id` int(11) NOT NULL auto_increment,
1733   `stock_id` varchar(40) default NULL,
1734   `issue_id` int(11) default NULL,
1735   `qty_issued` double default NULL,
1736   PRIMARY KEY  (`id`)
1737 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1738
1739
1740 ### Data of table `0_wo_issue_items` ###
1741
1742
1743
1744 ### Structure of table `0_wo_issues` ###
1745
1746 DROP TABLE IF EXISTS `0_wo_issues`;
1747
1748 CREATE TABLE `0_wo_issues` (
1749   `issue_no` int(11) NOT NULL auto_increment,
1750   `workorder_id` int(11) NOT NULL default '0',
1751   `reference` varchar(100) default NULL,
1752   `issue_date` date default NULL,
1753   `loc_code` varchar(5) default NULL,
1754   `workcentre_id` int(11) default NULL,
1755   PRIMARY KEY  (`issue_no`),
1756   KEY (`workorder_id`)
1757 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1758
1759
1760 ### Data of table `0_wo_issues` ###
1761
1762
1763
1764 ### Structure of table `0_wo_manufacture` ###
1765
1766 DROP TABLE IF EXISTS `0_wo_manufacture`;
1767
1768 CREATE TABLE `0_wo_manufacture` (
1769   `id` int(11) NOT NULL auto_increment,
1770   `reference` varchar(100) default NULL,
1771   `workorder_id` int(11) NOT NULL default '0',
1772   `quantity` double NOT NULL default '0',
1773   `date_` date NOT NULL default '0000-00-00',
1774   PRIMARY KEY  (`id`),
1775   KEY (`workorder_id`)
1776 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1777
1778
1779 ### Data of table `0_wo_manufacture` ###
1780
1781
1782
1783 ### Structure of table `0_wo_requirements` ###
1784
1785 DROP TABLE IF EXISTS `0_wo_requirements`;
1786
1787 CREATE TABLE `0_wo_requirements` (
1788   `id` int(11) NOT NULL auto_increment,
1789   `workorder_id` int(11) NOT NULL default '0',
1790   `stock_id` char(20) NOT NULL default '',
1791   `workcentre` int(11) NOT NULL default '0',
1792   `units_req` double NOT NULL default '1',
1793   `std_cost` double NOT NULL default '0',
1794   `loc_code` char(5) NOT NULL default '',
1795   `units_issued` double NOT NULL default '0',
1796   PRIMARY KEY  (`id`),
1797   KEY (`workorder_id`)
1798 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1799
1800
1801 ### Data of table `0_wo_requirements` ###
1802
1803
1804
1805 ### Structure of table `0_workcentres` ###
1806
1807 DROP TABLE IF EXISTS `0_workcentres`;
1808
1809 CREATE TABLE `0_workcentres` (
1810   `id` int(11) NOT NULL auto_increment,
1811   `name` char(40) NOT NULL default '',
1812   `description` char(50) NOT NULL default '',
1813   `inactive` tinyint(1) NOT NULL default '0',
1814   PRIMARY KEY  (`id`),
1815   UNIQUE KEY `name` (`name`)
1816 ) TYPE=MyISAM  AUTO_INCREMENT=1 ;
1817
1818
1819 ### Data of table `0_workcentres` ###
1820
1821
1822
1823 ### Structure of table `0_workorders` ###
1824
1825 DROP TABLE IF EXISTS `0_workorders`;
1826
1827 CREATE TABLE `0_workorders` (
1828   `id` int(11) NOT NULL auto_increment,
1829   `wo_ref` varchar(60) NOT NULL default '',
1830   `loc_code` varchar(5) NOT NULL default '',
1831   `units_reqd` double NOT NULL default '1',
1832   `stock_id` varchar(20) NOT NULL default '',
1833   `date_` date NOT NULL default '0000-00-00',
1834   `type` tinyint(4) NOT NULL default '0',
1835   `required_by` date NOT NULL default '0000-00-00',
1836   `released_date` date NOT NULL default '0000-00-00',
1837   `units_issued` double NOT NULL default '0',
1838   `closed` tinyint(1) NOT NULL default '0',
1839   `released` tinyint(1) NOT NULL default '0',
1840   `additional_costs` double NOT NULL default '0',
1841   PRIMARY KEY  (`id`),
1842   UNIQUE KEY `wo_ref` (`wo_ref`)
1843 ) TYPE=InnoDB  AUTO_INCREMENT=1 ;
1844
1845
1846 ### Data of table `0_workorders` ###
1847
1848
1849
1850 ### Structure of table `0_tags` ###
1851
1852 DROP TABLE IF EXISTS `0_tags`;
1853
1854 CREATE TABLE `0_tags` (
1855   `id` int(11) NOT NULL auto_increment,
1856   `type` smallint(6) NOT NULL,
1857   `name` varchar(30) NOT NULL,
1858   `description` varchar(60) default NULL,
1859   `inactive` tinyint(1) NOT NULL default '0',
1860   PRIMARY KEY  (`id`),
1861   UNIQUE KEY(`type`,`name`)
1862 ) TYPE=MyISAM AUTO_INCREMENT=1;
1863
1864
1865 ### Data of table `0_chart_tags` ###
1866
1867
1868
1869 ### Structure of table `0_tag_associations` ###
1870
1871 DROP TABLE IF EXISTS `0_tag_associations`;
1872
1873 CREATE TABLE `0_tag_associations` (
1874   `record_id` varchar(11) NOT NULL,
1875   `tag_id` int(11) NOT NULL,
1876   UNIQUE KEY(`record_id`,`tag_id`)
1877 ) TYPE=MyISAM;
1878
1879
1880 ### Data of table `0_tag_associations` ###
1881
1882 DROP TABLE IF EXISTS `0_useronline` ;
1883
1884 CREATE TABLE `0_useronline` (
1885         `id` int(11) NOT NULL AUTO_INCREMENT ,
1886         `timestamp` int(15) NOT NULL default '0',
1887         `ip` varchar(40) NOT NULL default '',
1888         `file` varchar(100) NOT NULL default '',
1889         PRIMARY KEY `id` (`id`) ,
1890         KEY (`timestamp`),
1891         KEY(`ip`)
1892 ) TYPE=MYISAM AUTO_INCREMENT=1;
1893