This repository was archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyyrlib.sql
More file actions
51 lines (41 loc) · 1.36 KB
/
Copy pathpyyrlib.sql
File metadata and controls
51 lines (41 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-- phpMyAdmin SQL Dump
-- version 3.3.7deb7
-- http://www.phpmyadmin.net
--
-- Vert: localhost
-- Generert den: 27. Jan, 2012 18:53 PM
-- Tjenerversjon: 5.1.49
-- PHP-Versjon: 5.3.3-7+squeeze3
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `pyyrlib`
--
-- --------------------------------------------------------
--
-- Tabellstruktur for tabell `countries`
--
CREATE TABLE IF NOT EXISTS `countries` (
`countryid` int(11) NOT NULL AUTO_INCREMENT,
`countrycode` varchar(2) NOT NULL,
`countryname` varchar(20) NOT NULL,
PRIMARY KEY (`countryid`),
UNIQUE KEY `countrycode` (`countrycode`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3506 ;
-- --------------------------------------------------------
--
-- Tabellstruktur for tabell `verda`
--
CREATE TABLE IF NOT EXISTS `verda` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`countryid` int(11) NOT NULL,
`placename` varchar(20) NOT NULL,
`xml` varchar(200) NOT NULL,
UNIQUE KEY `id` (`id`),
KEY `countryid` (`countryid`),
KEY `placename_2` (`placename`),
FULLTEXT KEY `placename` (`placename`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=48937 ;