From 9e565520701159884ed22ed378c617670587ee6a Mon Sep 17 00:00:00 2001 From: mdb Date: Thu, 13 Nov 2003 16:57:47 +0000 Subject: [PATCH] Call this column siteString to match the Site object. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1298 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- projects/samskivert/src/sql/create_site_tables.mysql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/samskivert/src/sql/create_site_tables.mysql b/projects/samskivert/src/sql/create_site_tables.mysql index c5b91ab2..782e7867 100644 --- a/projects/samskivert/src/sql/create_site_tables.mysql +++ b/projects/samskivert/src/sql/create_site_tables.mysql @@ -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 * identifier. @@ -11,8 +11,8 @@ */ DROP TABLE IF EXISTS sites; CREATE TABLE sites ( - siteId INTEGER(5) PRIMARY KEY NOT NULL AUTO_INCREMENT, - stringId VARCHAR(24) NOT NULL + siteId INTEGER(5) PRIMARY KEY NOT NULL AUTO_INCREMENT, + siteString VARCHAR(24) NOT NULL ); /**