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