summaryrefslogtreecommitdiffstats
path: root/setup/animelist.sql
blob: 27513e833c5bfd1e02414c3ce0945aa359d86683 (plain)
1
2
3
4
5
6
7
8
9
DROP TABLE IF EXISTS `anime_list`;

CREATE TABLE `anime_list` (
  `uid` int(11) unsigned NOT NULL,
  `aid` int(11) unsigned NOT NULL,
  `status` tinyint(4) NOT NULL,
  `episodes` int(11) NOT NULL,
  KEY `aiduid` (`aid`, `uid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;