BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gazelle.sql 288B

12345678910
  1. -- Line 1239
  2. CREATE TABLE `torrents_mirrors` (
  3. `ID` int(10) NOT NULL AUTO_INCREMENT,
  4. `GroupID` int(10) NOT NULL,
  5. `UserID` int(10) NOT NULL,
  6. `Time` datetime,
  7. `Resource` varchar(255) NOT NULL,
  8. PRIMARY KEY (`ID`,`GroupID`,`Resource`)
  9. ) ENGINE=InnoDB CHARSET=utf8mb4;
  10. -- Line 1246