moved table dumps in to separate directory

This commit is contained in:
Graham McIntire
2011-10-22 10:59:23 -05:00
parent 5e11e22c9a
commit 3776ab5c79
7 changed files with 3880 additions and 0 deletions

34
sql/tables/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 ;