Call this column siteString to match the Site object.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1298 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-11-13 16:57:47 +00:00
parent 419a36a7f5
commit 9e56552070
@@ -1,5 +1,5 @@
/** /**
* $Id: create_site_tables.mysql,v 1.1 2001/11/01 21:34:19 mdb Exp $ * $Id: create_site_tables.mysql,v 1.2 2003/11/13 16:57:47 mdb Exp $
* *
* Creates the necessary database tables in MySQL for the JDBC table site * Creates the necessary database tables in MySQL for the JDBC table site
* identifier. * identifier.
@@ -11,8 +11,8 @@
*/ */
DROP TABLE IF EXISTS sites; DROP TABLE IF EXISTS sites;
CREATE TABLE sites ( CREATE TABLE sites (
siteId INTEGER(5) PRIMARY KEY NOT NULL AUTO_INCREMENT, siteId INTEGER(5) PRIMARY KEY NOT NULL AUTO_INCREMENT,
stringId VARCHAR(24) NOT NULL siteString VARCHAR(24) NOT NULL
); );
/** /**