a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/hgRelate.c src/hg/lib/hgRelate.c index f8ce4e3..1862415 100644 --- src/hg/lib/hgRelate.c +++ src/hg/lib/hgRelate.c @@ -2,31 +2,30 @@ * Copyright (C) 2000 Jim Kent. This source code may be freely used * * for personal, academic, and non-profit purposes. Commercial use * * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) * *****************************************************************************/ /* hgRelate - Especially relational parts of browser data base. */ #include "common.h" #include "portable.h" #include "localmem.h" #include "dystring.h" #include "hash.h" #include "fa.h" #include "jksql.h" #include "hgRelate.h" #include "hdb.h" -static char const rcsid[] = "$Id: hgRelate.c,v 1.28 2010/04/28 17:42:53 galt Exp $"; static char extFileCreate[] = /* This keeps track of external files and directories. */ "create table %s (" "id int unsigned not null primary key," /* Unique ID across all tables. */ "name varchar(64) not null," /* Symbolic name of file. */ "path varchar(255) not null," /* Full path. Ends in '/' if a dir. */ "size bigint unsigned not null," /* Size of file (checked) */ /* Extra indices. */ "index (name))"; static char historyCreate[] = /* This contains a row for each update made to database. */ "create table history (" "ix int not null auto_increment primary key," /* Update number. */