-- -- Database: `fleetlinks` -- -- -------------------------------------------------------- -- -- Table structure for table `alliance` -- DROP TABLE IF EXISTS `alliance`; CREATE TABLE IF NOT EXISTS `alliance` ( `id` int(11) NOT NULL, `name` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `alliance` -- -- -------------------------------------------------------- -- -- Table structure for table `fleet` -- DROP TABLE IF EXISTS `fleet`; CREATE TABLE IF NOT EXISTS `fleet` ( `id` bigint(20) NOT NULL, `allianceId` int(11) NOT NULL, `name` varchar(50) NOT NULL, `added` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `fleet` --