From ad2f0a05043b5418a7fae74a4a4b5d8dada9c8d9 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Sun, 11 Mar 2007 01:38:00 +0000 Subject: [PATCH] Update appData table type field enum to reflect changing from 'image' to 'screenshot' --- tables/appdb_tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tables/appdb_tables.sql b/tables/appdb_tables.sql index 299cdc0..23bc806 100644 --- a/tables/appdb_tables.sql +++ b/tables/appdb_tables.sql @@ -134,7 +134,7 @@ create table appData ( id int not null auto_increment, appId int not null, versionId int default 0, - type enum('image', 'url', 'bug','downloadurl'), + type enum('screenshot', 'url', 'bug','downloadurl'), description text, url varchar(255) default NULL, submitTime timestamp(14) NOT NULL,