svn -> git Migration

This commit is contained in:
KimLS
2013-02-16 16:14:39 -08:00
parent 88c9715fb0
commit da7347f76f
1174 changed files with 445622 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
--
-- Table structure for table `lfguild`
--
CREATE TABLE IF NOT EXISTS `lfguild` (
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`name` varchar(32) NOT NULL,
`comment` varchar(256) NOT NULL,
`fromlevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
`tolevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
`classes` int(10) unsigned NOT NULL DEFAULT '0',
`aacount` int(10) unsigned NOT NULL DEFAULT '0',
`timezone` int(10) unsigned NOT NULL DEFAULT '0',
`timeposted` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`type`,`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;