[APPDB] Add missing column to appNotes create table statement

Rosanne DiMesio dimesio at earthlink.net
Wed May 10 20:37:59 CDT 2017


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 at earthlink.net>
---
 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)
 );
-- 
2.12.0




More information about the wine-patches mailing list