[1207] Removed SQL project (deprecated).
[mangos-git.git] / sql / mail.sql
blob575ed1545ed354d42e3d2c3fa58bd012b6c98a4b
1 -- phpMyAdmin SQL Dump
2 -- version 2.6.2
3 -- http://www.phpmyadmin.net
4 -- 
5 -- Host: localhost
6 -- Generation Time: Sep 10, 2005 at 12:24 PM
7 -- Server version: 4.1.12
8 -- PHP Version: 5.0.4
9 -- 
10 -- Database: `mangos`
11 -- 
13 -- --------------------------------------------------------
15 -- 
16 -- Table structure for table `mail`
17 -- 
18 -- Creation: Sep 10, 2005 at 12:02 PM
19 -- Last update: Sep 10, 2005 at 12:02 PM
20 -- 
22 DROP TABLE IF EXISTS `mail`;
23 CREATE TABLE IF NOT EXISTS `mail` (
24   `mailId` bigint(20) unsigned NOT NULL default '0',
25   `sender` bigint(20) unsigned NOT NULL default '0',
26   `reciever` bigint(20) unsigned NOT NULL default '0',
27   `subject` longtext,
28   `body` longtext,
29   `item` bigint(20) unsigned NOT NULL default '0',
30   `time` bigint(20) unsigned NOT NULL default '0',
31   `money` bigint(20) unsigned NOT NULL default '0',
32   `COD` bigint(20) unsigned NOT NULL default '0',
33   `checked` bigint(20) unsigned NOT NULL default '0',
34   PRIMARY KEY  (`mailId`)
35 ) TYPE=MyISAM COMMENT='InnoDB free: 18432 kB';