diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-07-28 20:59:36 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-07-28 20:59:36 +0200 |
commit | bc51425bb753d7a5adffe707053b6186a4de7bba (patch) | |
tree | 513260893bf9cc5514280f834c59231cbe0a16e5 /apps/media/appinfo | |
parent | 7d15a45e09bfa27597a1169e12ba79b6e5221946 (diff) | |
download | nextcloud-server-bc51425bb753d7a5adffe707053b6186a4de7bba.tar.gz nextcloud-server-bc51425bb753d7a5adffe707053b6186a4de7bba.zip |
keep track of playcount as last played time of music files
Diffstat (limited to 'apps/media/appinfo')
-rw-r--r-- | apps/media/appinfo/database.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/media/appinfo/database.xml b/apps/media/appinfo/database.xml index 91fa1f9e2a1..223682fcfcd 100644 --- a/apps/media/appinfo/database.xml +++ b/apps/media/appinfo/database.xml @@ -206,6 +206,24 @@ <length>4</length> </field> + <field> + <name>song_playcount</name> + <type>integer</type> + <default> + </default> + <notnull>true</notnull> + <length>4</length> + </field> + + <field> + <name>song_lastplayed</name> + <type>integer</type> + <default> + </default> + <notnull>true</notnull> + <length>4</length> + </field> + </declaration> </table> |