summaryrefslogtreecommitdiffstats
path: root/appinfo/database.xml
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-05-12 21:50:53 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-05-12 21:50:53 -0400
commit72770c15d3e5b18b620720a259b7c6ecd6274157 (patch)
tree3cbde1a3d22957aeee4156617aef2223a490c00e /appinfo/database.xml
parentf8222c89afc5884ef191255267751e9b273ddf61 (diff)
Added folders and items table to database
Diffstat (limited to 'appinfo/database.xml')
-rw-r--r--appinfo/database.xml94
1 files changed, 88 insertions, 6 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
index e2aeb7ee2..30f337e5b 100644
--- a/appinfo/database.xml
+++ b/appinfo/database.xml
@@ -5,7 +5,7 @@
<overwrite>false</overwrite>
<charset>latin1</charset>
<table>
- <name>*dbprefix*news_feeds</name>
+ <name>*dbprefix*news_folders</name>
<declaration>
<field>
<name>id</name>
@@ -16,23 +16,58 @@
<length>4</length>
</field>
<field>
- <name>url</name>
+ <name>parentid</name>
+ <type>integer</type>
+ <notnull>false</notnull>
+ <length>4</length>
+ </field>
+ <field>
+ <name>name</name>
<type>text</type>
<notnull>true</notnull>
<length>100</length>
</field>
<field>
- <name>title</name>
+ <name>userid</name>
+ <type>text</type>
+ <default></default>
+ <notnull>true</notnull>
+ <length>64</length>
+ </field>
+
+ <index>
+ <name>id</name>
+ <unique>true</unique>
+ <field>
+ <name>id</name>
+ <sorting>descending</sorting>
+ </field>
+ </index>
+ </declaration>
+ </table>
+
+ <table>
+ <name>*dbprefix*news_feeds</name>
+ <declaration>
+ <field>
+ <name>id</name>
+ <type>integer</type>
+ <default>0</default>
+ <notnull>true</notnull>
+ <autoincrement>1</autoincrement>
+ <length>4</length>
+ </field>
+ <field>
+ <name>url</name>
<type>text</type>
<notnull>true</notnull>
<length>100</length>
</field>
<field>
- <name>user_id</name>
+ <name>title</name>
<type>text</type>
- <default></default>
<notnull>true</notnull>
- <length>64</length>
+ <length>100</length>
</field>
<field>
<name>added</name>
@@ -50,6 +85,53 @@
<unsigned>true</unsigned>
<length>4</length>
</field>
+ <field>
+ <name>folderid</name>
+ <type>integer</type>
+ <notnull>true</notnull>
+ <length>4</length>
+ </field>
+
+ <index>
+ <name>id</name>
+ <unique>true</unique>
+ <field>
+ <name>id</name>
+ <sorting>descending</sorting>
+ </field>
+ </index>
+ </declaration>
+ </table>
+
+ <table>
+ <name>*dbprefix*news_items</name>
+ <declaration>
+ <field>
+ <name>id</name>
+ <type>integer</type>
+ <default>0</default>
+ <notnull>true</notnull>
+ <autoincrement>1</autoincrement>
+ <length>4</length>
+ </field>
+ <field>
+ <name>url</name>
+ <type>text</type>
+ <notnull>true</notnull>
+ <length>100</length>
+ </field>
+ <field>
+ <name>title</name>
+ <type>text</type>
+ <notnull>true</notnull>
+ <length>100</length>
+ </field>
+ <field>
+ <name>feedid</name>
+ <type>integer</type>
+ <notnull>true</notnull>
+ <length>4</length>
+ </field>
<index>
<name>id</name>