summaryrefslogtreecommitdiffstats
path: root/setup/animelist.sql
diff options
context:
space:
mode:
authorraylu <raylu@mixpanel.com>2011-07-25 01:19:07 -0700
committerraylu <raylu@mixpanel.com>2011-07-25 01:19:07 -0700
commit6f531aa3ac1dfefe9c61033b2f4ba13162c23186 (patch)
tree7e4f9348d6bd7028fa42ad93468610a4ac8ebd4a /setup/animelist.sql
parentf3b9ded2327c22e196b6b0b2d0a6953263013dec (diff)
downloadotakuhub-6f531aa3ac1dfefe9c61033b2f4ba13162c23186.tar.xz
add animelist sql fileHEADmaster
Diffstat (limited to 'setup/animelist.sql')
-rw-r--r--setup/animelist.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/setup/animelist.sql b/setup/animelist.sql
new file mode 100644
index 0000000..27513e8
--- /dev/null
+++ b/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;