Browse Source

add animelist sql file

raylu 14 năm trước cách đây
mục cha
commit
6f531aa3ac
1 tập tin đã thay đổi với 9 bổ sung0 xóa
  1. 9 0
      setup/animelist.sql

+ 9 - 0
setup/animelist.sql

@@ -0,0 +1,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;