diff --git a/Database/Update/4.2/MsSql.sql b/Database/Update/4.2/MsSql.sql index 3d5f748f..dc890c55 100644 --- a/Database/Update/4.2/MsSql.sql +++ b/Database/Update/4.2/MsSql.sql @@ -1,8 +1,6 @@ ALTER TABLE dbo.ArticleType ADD DisplayOrder int NULL GO - ALTER TABLE dbo.ProductCategory ADD DisplayOrder int NULL GO - ALTER TABLE dbo.VideoType ADD DisplayOrder int NULL GO \ No newline at end of file diff --git a/Database/Update/4.2/MySql.sql b/Database/Update/4.2/MySql.sql new file mode 100644 index 00000000..473dff38 --- /dev/null +++ b/Database/Update/4.2/MySql.sql @@ -0,0 +1,3 @@ +ALTER TABLE ArticleType ADD DisplayOrder INT NULL; +ALTER TABLE ProductCategory ADD DisplayOrder INT NULL; +ALTER TABLE VideoType ADD DisplayOrder INT NULL; \ No newline at end of file diff --git a/Database/Update/4.2/Sqlite.sql b/Database/Update/4.2/Sqlite.sql new file mode 100644 index 00000000..e6b5bd76 --- /dev/null +++ b/Database/Update/4.2/Sqlite.sql @@ -0,0 +1,3 @@ +ALTER TABLE ArticleType ADD DisplayOrder int NULL; +ALTER TABLE ProductCategory ADD DisplayOrder int NULL; +ALTER TABLE VideoType ADD DisplayOrder int NULL; \ No newline at end of file diff --git a/Database/Update/4.2/package.zip.zip b/Database/Update/4.2/package.zip.zip new file mode 100644 index 00000000..e9848fae Binary files /dev/null and b/Database/Update/4.2/package.zip.zip differ diff --git a/Database/index.json b/Database/index.json index 88ad07ec..63f624cb 100644 --- a/Database/index.json +++ b/Database/index.json @@ -64,6 +64,10 @@ { "Version": "4.1", "Resolved": "Update/4.1/package.zip" + }, + { + "Version": "4.2", + "Resolved": "Update/4.2/package.zip" } ] } \ No newline at end of file