From ad0ba7793806d213ee3e12efb33529379b4761c4 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Sun, 15 Apr 2012 15:03:05 +0200 Subject: Added database schema for Article and Feed object. --- documentation/schemas/Article | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 documentation/schemas/Article (limited to 'documentation/schemas/Article') diff --git a/documentation/schemas/Article b/documentation/schemas/Article new file mode 100644 index 00000000..150f244d --- /dev/null +++ b/documentation/schemas/Article @@ -0,0 +1,20 @@ +.. -*-restructuredtext-*- + + +Schema for a Article object +=========================== + + { + article_id: (str), + type: (str), + article_date: (datetime), + article_link: (str), + article_title: (str), + article_content: (str), + article_readed: (bool), + article_like: (bool) + } + + +Schema description +================== -- cgit