Rosanne DiMesio : Add missing column to appNotes create table statement
Module: appdb Branch: master Commit: b5d7a17390b75736a902e2864cae36e967c70271 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=b5d7a17390b75736a902e2864... Author: Rosanne DiMesio <dimesio(a)earthlink.net> Date: Wed May 10 20:37:59 2017 -0500 Add missing column to appNotes create table statement The column linkedWith already exists in the appNotes table in the production database, but is missing from the create table statement in appdb_tables.sql. Signed-off-by: Rosanne DiMesio <dimesio(a)earthlink.net> Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com> --- tables/appdb_tables.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/tables/appdb_tables.sql b/tables/appdb_tables.sql index be556d3..6fc9caa 100644 --- a/tables/appdb_tables.sql +++ b/tables/appdb_tables.sql @@ -174,6 +174,7 @@ create table appNotes ( appId int not null, submitterId int not null, submitTime datetime not null, + linkedWith int not null, type enum('note','howto','warning') not null default 'note', key(noteId) );
participants (1)
-
Jeremy Newman