/[drupal]/contributions/modules/bookroll/bookroll.mysql
ViewVC logotype

Contents of /contributions/modules/bookroll/bookroll.mysql

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


Revision 1.3 - (show annotations) (download)
Sun Nov 27 00:18:26 2005 UTC (4 years ago) by eaton
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-4-7
Changes since 1.2: +14 -372 lines
It also helps not to paste the *module* file into the *sql* file.
1 # $Id: bookroll.mysql,v 1.1 2005/11/26 20:14:39 eaton Exp $
2 #
3 # Table structure for table `bookroll`
4 #
5
6 CREATE TABLE bookroll (
7 uid int(10) unsigned NOT NULL default '0',
8 asin varchar(10) NOT NULL default '',
9 notes varchar(255) NOT NULL default '',
10 status int(10) NOT NULL default '0',
11 weight int(10) NOT NULL default '0',
12 timestamp int(11) unsigned NOT NULL default '0'
13 PRIMARY KEY (uid, asin)
14 ) TYPE=MyISAM;

  ViewVC Help
Powered by ViewVC 1.1.2