| 6 |
kaklik |
1 |
-- phpMyAdmin SQL Dump
|
|
|
2 |
-- version 2.6.0-pl3
|
|
|
3 |
-- http://www.phpmyadmin.net
|
|
|
4 |
--
|
|
|
5 |
-- Host: localhost
|
|
|
6 |
-- Generation Time: Feb 10, 2005 at 09:21 PM
|
|
|
7 |
-- Server version: 4.0.23
|
|
|
8 |
-- PHP Version: 4.3.10
|
|
|
9 |
--
|
|
|
10 |
-- Database: `mydb`
|
|
|
11 |
--
|
|
|
12 |
|
|
|
13 |
-- --------------------------------------------------------
|
|
|
14 |
|
|
|
15 |
--
|
|
|
16 |
-- Table structure for table `shoutbox`
|
|
|
17 |
--
|
|
|
18 |
|
|
|
19 |
CREATE TABLE `shoutbox` (
|
|
|
20 |
`id` int(11) NOT NULL auto_increment,
|
|
|
21 |
`message` text NOT NULL,
|
|
|
22 |
`author` varchar(20) NOT NULL default '',
|
|
|
23 |
`email` varchar(50) NOT NULL default '',
|
|
|
24 |
`date` varchar(20) NOT NULL default '',
|
|
|
25 |
`ip` varchar(20) NOT NULL default '',
|
|
|
26 |
`lastpost` varchar(20) NOT NULL default '',
|
|
|
27 |
PRIMARY KEY (`id`)
|
|
|
28 |
) TYPE=MyISAM PACK_KEYS=0 AUTO_INCREMENT=26 ;
|
|
|
29 |
|
|
|
30 |
--
|
|
|
31 |
-- Dumping data for table `shoutbox`
|
|
|
32 |
--
|
|
|
33 |
|
|
|
34 |
INSERT INTO `shoutbox` VALUES (13, 'welcome to the installation', 'clear this in your phpMyAdmin', '', '', '203.36.44.14', '');
|