/[drupal]/contributions/modules/discography/discography.sql
ViewVC logotype

Contents of /contributions/modules/discography/discography.sql

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Fri May 6 01:53:04 2005 UTC (4 years, 6 months ago) by mike3k
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-sql
Initial release
1 --
2 -- Table structure for table discography
3 --
4
5 CREATE TABLE `discography` (
6 `nid` int(10) unsigned NOT NULL default '0',
7 `year` int(4) unsigned default '0',
8 `artist` varchar(128) default NULL,
9 `label` varchar(32) default NULL,
10 `ITMS` varchar(128) default NULL,
11 `tracks` longtext,
12 `ASIN` varchar(16) default NULL,
13 `Cassette` tinyint(1) default NULL,
14 `CD` tinyint(1) default NULL,
15 `DVD` tinyint(1) default NULL,
16 PRIMARY KEY (`nid`)
17 ) TYPE=MyISAM;

  ViewVC Help
Powered by ViewVC 1.1.2