瀏覽代碼

add animelist sql file

raylu 14 年之前
父節點
當前提交
6f531aa3ac
共有 1 個文件被更改,包括 9 次插入0 次删除
  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;