Fixed patient phone number problem.
[openemr.git] / interface / language / lang.sql
blobb565efaf2da9b6d2e3ef50074828a4cf0680d51d
1 -- phpMyAdmin SQL Dump
2 -- version 2.6.1
3 -- http://www.phpmyadmin.net
4 -- 
5 -- Host: localhost
6 -- Generation Time: Nov 16, 2005 at 10:28 AM
7 -- Server version: 4.1.11
8 -- PHP Version: 4.3.9-1
9 -- 
10 -- Database: `openemr1018`
11 -- 
13 -- --------------------------------------------------------
15 -- 
16 -- Table structure for table `lang_constants`
17 -- 
19 CREATE TABLE IF NOT EXISTS `lang_constants` (
20   `cons_id` int(11) NOT NULL auto_increment,
21   `constant_name` varchar(255) NOT NULL default '',
22   UNIQUE KEY `cons_id` (`cons_id`),
23   KEY `cons_name` (`constant_name`)
24 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
26 -- 
27 -- Dumping data for table `lang_constants`
28 -- 
30 -- --------------------------------------------------------
32 -- 
33 -- Table structure for table `lang_definitions`
34 -- 
36 CREATE TABLE IF NOT EXISTS `lang_definitions` (
37   `def_id` int(11) NOT NULL auto_increment,
38   `cons_id` int(11) NOT NULL default '0',
39   `lang_id` int(11) NOT NULL default '0',
40   `definition` mediumtext NOT NULL,
41   UNIQUE KEY `def_id` (`def_id`),
42   KEY `definition` (`definition`(100))
43 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ;
45 -- 
46 -- Dumping data for table `lang_definitions`
47 -- 
50 -- --------------------------------------------------------
52 -- 
53 -- Table structure for table `lang_languages`
54 -- 
56 CREATE TABLE IF NOT EXISTS `lang_languages` (
57   `lang_id` int(11) NOT NULL auto_increment,
58   `lang_code` char(2) NOT NULL default '',
59   `lang_description` varchar(100) NOT NULL default '',
60   UNIQUE KEY `lang_id` (`lang_id`)
61 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ;
63 -- 
64 -- Dumping data for table `lang_languages`
65 -- 
67 INSERT INTO `lang_languages` (`lang_id`, `lang_code`, `lang_description`) VALUES (1, 'en', 'English');
68 INSERT INTO `lang_languages` (`lang_id`, `lang_code`, `lang_description`) VALUES (2, 'se', 'Swedish');
69 INSERT INTO `lang_languages` (`lang_id`, `lang_code`, `lang_description`) VALUES (3, 'es', 'Spanish');