inital commit
This commit is contained in:
12
lp/sql/lp_v1_1.sql
Normal file
12
lp/sql/lp_v1_1.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
DROP TABLE IF EXISTS `lp`;
|
||||
CREATE TABLE `lp` (
|
||||
`id` int(11) NOT NULL auto_increment,
|
||||
`steamid` varchar(150) NOT NULL,
|
||||
`points` int(11) NOT NULL,
|
||||
`rs` tinyint(1) NOT NULL,
|
||||
`rsmin` int(11) NOT NULL,
|
||||
`ingame` tinyint(1) NOT NULL default '0',
|
||||
`ingameid` int(11) NOT NULL default '0',
|
||||
`serverid` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=ascii;
|
Reference in New Issue
Block a user