animelist.sql 267 B

123456789
  1. DROP TABLE IF EXISTS `anime_list`;
  2. CREATE TABLE `anime_list` (
  3. `uid` int(11) unsigned NOT NULL,
  4. `aid` int(11) unsigned NOT NULL,
  5. `status` tinyint(4) NOT NULL,
  6. `episodes` int(11) NOT NULL,
  7. KEY `aiduid` (`aid`, `uid`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;