Module: appdb Branch: master Commit: 9f3b96665df1b7ad0bf04b7b60b8f3e6118c6d37 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=9f3b96665df1b7ad0bf04b7b6...
Author: Andrew Nguyen arethusa26@gmail.com Date: Sat Dec 12 15:40:31 2009 +0100
tables: Fix a few syntax errors in appdb_tables.sql
---
tables/appdb_tables.sql | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tables/appdb_tables.sql b/tables/appdb_tables.sql index d2bfbb8..d883108 100644 --- a/tables/appdb_tables.sql +++ b/tables/appdb_tables.sql @@ -142,7 +142,7 @@ create table appData ( submitTime datetime NOT NULL, submitterId int(11) NOT NULL default '0', state enum('accepted','queued','rejected') NOT NULL default 'accepted', - testedVersion text NOT NULL + testedVersion text NOT NULL, KEY id (id), KEY versionId (versionId) ); @@ -173,7 +173,7 @@ create table appNotes ( appId int not null, submitterId int not null, submitTime datetime not null, - linkedWith int not null + linkedWith int not null, key(noteId) );