summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
authorMichael Francis <edude03@gmail.com>2011-07-16 19:51:52 -0400
committerMichael Francis <edude03@gmail.com>2011-07-16 19:51:52 -0400
commitec5b4d4fbfa3f4daecbd01ca6fd38a3d5944990b (patch)
tree31aa23567aba87f1117a17c0d28567812eb3657d /models
parent9111a1e3d0837b5c79d953901c3a074ff4e5c928 (diff)
downloadotakuhub-ec5b4d4fbfa3f4daecbd01ca6fd38a3d5944990b.tar.xz
Manga model
Diffstat (limited to 'models')
-rw-r--r--models/Manga.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/models/Manga.php b/models/Manga.php
new file mode 100644
index 0000000..03c2d29
--- /dev/null
+++ b/models/Manga.php
@@ -0,0 +1,9 @@
+<?php
+
+namespace app\models;
+
+class Manga extends \lithium\data\Model {
+ protected $_meta = array('key' => '_id', 'source' => 'manga', 'connection' => 'mongo');
+
+
+} \ No newline at end of file