Difference between revisions of "AudioFerret/v1/sql/Album"

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:25, 10 January 2012

SQL

<mysql>CREATE TABLE `Album` (

 `id` int(11) NOT NULL auto_increment,
 `idartist` int(11) default NULL,
 `name` varchar(128) default NULL,
 `sort` varchar(50) default NULL,
 `filekey` varchar(50) default NULL,
 `isalbum` varchar(1) default NULL,
 `iscomplete` varchar(1) default NULL,
 PRIMARY KEY  (`id`)

) ENGINE=MyISAM DEFAULT CHARSET=latin1;</mysql>