Make votes version specific

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-01-21 18:06:53 +00:00
committed by WineHQ
parent 625a8e2842
commit f3dae72762
8 changed files with 84 additions and 66 deletions

View File

@@ -152,11 +152,11 @@ create table appData (
create table appVotes (
id int not null auto_increment,
time timestamp,
appId int not null,
versionId int not null,
userId int not null,
slot int not null,
key(id),
index(appId),
index(versionId),
index(userId)
);