Difference between revisions of "AudioFerret/v1/sql/Tracks Queued"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< AudioFerret‎ | v1‎ | sql
Jump to navigation Jump to search
(extracted from main page)
 
(No difference)

Latest revision as of 02:30, 10 January 2012

About

  • Purpose: This is the list of tracks being requested; it is normally empty.

SQL

<mysql>CREATE TABLE `Tracks_Queued` (

 `id` int(11) NOT NULL auto_increment,
 `id_title` varchar(50) default NULL,
 `when_requested` datetime default NULL,
 `user` varchar(50) default NULL,
 `station` varchar(50) default NULL,
 PRIMARY KEY  (`id`)

) ENGINE=MyISAM;</mysql>