[APPDB] Add missing default value to appData create table statement

Rosanne DiMesio dimesio at earthlink.net
Thu May 11 13:28:21 CDT 2017


The default value already exists in the production database but was not added to appdb_tables.sql.

Signed-off-by: Rosanne DiMesio <dimesio at earthlink.net>
---
 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 6fc9caa..beb1743 100644
--- a/tables/appdb_tables.sql
+++ b/tables/appdb_tables.sql
@@ -135,7 +135,7 @@ create table appComments (
  */
 create table appData (
 	id              int not null auto_increment,
-	appId           int not null,
+	appId           int not null default 0,
 	versionId       int default 0,
 	type            enum('screenshot', 'url', 'bug','downloadurl'),
 	description     text,
-- 
2.12.0




More information about the wine-patches mailing list