From 28553070697536a2a987d203f19ca92fe2619d4c Mon Sep 17 00:00:00 2001 From: emkael Date: Fri, 25 Aug 2017 14:16:34 +0200 Subject: Adding Group field to Tables table on convert (single-section BWS files from Pary did not generate it) --- Aktywator/Bws.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Aktywator') diff --git a/Aktywator/Bws.cs b/Aktywator/Bws.cs index ab15670..3906ed9 100644 --- a/Aktywator/Bws.cs +++ b/Aktywator/Bws.cs @@ -206,6 +206,14 @@ namespace Aktywator s.createField(sql); } + try + { + sql.query("ALTER TABLE Tables ADD COLUMN `Group` integer;"); + } + catch (OleDbException) + { + } + try { sql.query("CREATE TABLE PlayerNames (ID integer, Name text(18));"); -- cgit v1.2.3