[1207] Removed SQL project (deprecated).
[mangos-git.git] / sql / gameobj_loot.sql
blob64d9955870e510eedc805e049b6ab2f03744dafc
1 -- phpMyAdmin SQL Dump
2 -- version 2.6.2
3 -- http://www.phpmyadmin.net
4 -- 
5 -- Host: localhost
6 -- Generation Time: Sep 12, 2005 at 10:37 AM
7 -- Server version: 4.1.12
8 -- PHP Version: 5.0.4
9 -- 
10 -- Database: `mangos`
11 -- 
13 -- --------------------------------------------------------
15 -- 
16 -- Table structure for table `gameobj_loot`
17 -- 
18 -- Creation: Sep 12, 2005 at 10:17 AM
19 -- Last update: Sep 12, 2005 at 10:17 AM
20 -- Last check: Sep 12, 2005 at 10:19 AM
21 -- 
23 DROP TABLE IF EXISTS `gameobj_loot`;
24 CREATE TABLE IF NOT EXISTS `gameobj_loot` (
25   `entryid` int(11) NOT NULL default '0',
26   `itemid` int(11) NOT NULL default '0',
27   `percentchance` float default NULL,
28   PRIMARY KEY  (`entryid`,`itemid`)
29 ) TYPE=MyISAM;