1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 05:09:42 +02:00

Implement Azure SQL database compatibility checks

This commit is contained in:
Harvey Kandola 2024-01-16 12:47:44 -05:00
parent 599c53a971
commit 20fb853907
4 changed files with 6 additions and 6 deletions

View file

@ -12,9 +12,9 @@ All you need to provide is your database -- PostgreSQL, Microsoft SQL Server or
## Latest Release ## Latest Release
[Community edition: v5.11.1](https://github.com/documize/community/releases) [Community edition: v5.11.2](https://github.com/documize/community/releases)
[Community+ edition: v5.11.1](https://www.documize.com/community/get-started) [Community+ edition: v5.11.2](https://www.documize.com/community/get-started)
The Community+ edition is the "enterprise" offering with advanced capabilities and customer support: The Community+ edition is the "enterprise" offering with advanced capabilities and customer support:

View file

@ -82,7 +82,7 @@ func Check(runtime *env.Runtime) bool {
return false return false
} }
if len(flds) == 0 { if len(flds) <= 5 {
runtime.Log.Info("Database: starting setup mode for empty database") runtime.Log.Info("Database: starting setup mode for empty database")
runtime.Flags.SiteMode = env.SiteModeSetup runtime.Flags.SiteMode = env.SiteModeSetup
return false return false

View file

@ -41,8 +41,8 @@ func main() {
rt.Product = domain.Product{} rt.Product = domain.Product{}
rt.Product.Major = "5" rt.Product.Major = "5"
rt.Product.Minor = "11" rt.Product.Minor = "11"
rt.Product.Patch = "1" rt.Product.Patch = "2"
rt.Product.Revision = "1705347666" rt.Product.Revision = "1705427184"
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch) rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
rt.Product.Edition = domain.CommunityEdition rt.Product.Edition = domain.CommunityEdition
rt.Product.Title = "Community" rt.Product.Title = "Community"

View file

@ -1,6 +1,6 @@
{ {
"name": "documize", "name": "documize",
"version": "5.11.1", "version": "5.11.2",
"private": true, "private": true,
"description": "Documize Community", "description": "Documize Community",
"repository": "", "repository": "",