Added DXCC and Notes SQL Dumps

This commit is contained in:
Peter Goodhall
2011-06-18 18:31:26 +01:00
parent 3e743f2e0a
commit a22c71b69b
2 changed files with 3499 additions and 0 deletions

3465
sql/dxcc.sql Normal file

File diff suppressed because it is too large Load Diff

34
sql/notes.sql Normal file
View File

@@ -0,0 +1,34 @@
-- phpMyAdmin SQL Dump
-- version 2.11.8.1deb5+lenny8
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 18, 2011 at 06:30 PM
-- Server version: 5.0.51
-- PHP Version: 5.2.6-1+lenny10
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: `hrd_2e0sql`
--
-- --------------------------------------------------------
--
-- Table structure for table `notes`
--
CREATE TABLE IF NOT EXISTS `notes` (
`id` int(11) NOT NULL auto_increment,
`cat` varchar(255) NOT NULL,
`title` varchar(255) NOT NULL,
`note` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;