Update of /cvsroot/basedb/basedb/include/local_distr
In directory sc8-pr-cvs1:/tmp/cvs-serv19639/include/local_distr
Modified Files:
raw_columns.inc.php
Log Message:
added comment
Index: raw_columns.inc.php
===================================================================
RCS file: /cvsroot/basedb/basedb/include/local_distr/raw_columns.inc.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** raw_columns.inc.php 3 Feb 2003 08:56:10 -0000 1.15
--- raw_columns.inc.php 12 Feb 2003 16:17:15 -0000 1.16
***************
*** 21,24 ****
--- 21,37 ----
//
+ // This file defines site-specific things that have to do with the
+ // RawBioAssayData table. That table has a fairly small set of mandatory
+ // columns. In addition to these, a site admin may add columns and add
+ // information about them here so that BASE can know what to do with them.
+ // Note that this file MUST match your RawBioAssayData table's structure.
+ // You can add column to an existing BASE installation (although the
+ // ALTER TABLE command may take a long time depending on the size of
+ // the table), but deleting/renaming columns can only be done for fresh
+ // (empty) BASE installation, since things may refer to the columns.
+
+ // This is the GPR version of raw_columns.inc.php, with most columns from
+ // the GPR format, plus a few other columns.
+
require_once("extracols.inc.php");
***************
*** 35,38 ****
--- 48,53 ----
// Note that for PostgreSQL the order of the columns here must be the
// exact same as that in the table, and all columns must be present.
+ // This implies that those restrictions must always hold (because of
+ // RDBMS independence).
// The columns that are always present in RawBioAssayData are:
// rawBioAssay, position, element, reporter, x, y, block, numRow, numCol.
|