automate the 2.1.0 upgrade

This commit is contained in:
Shaun Walker
2021-05-27 16:18:45 -04:00
parent 908d572cc9
commit fbce6c7248
12 changed files with 160 additions and 75 deletions

View File

@ -5,11 +5,6 @@ namespace Oqtane.Models
/// </summary>
public class Database
{
/// <summary>
/// Friendly name for the Admin to identify the DB
/// </summary>
public string FriendlyName { get; set; }
/// <summary>
/// Name of the Database
/// </summary>
@ -24,10 +19,5 @@ namespace Oqtane.Models
/// Type of DB using the full namespace, like `Oqtane.Database.SqlServer.SqlServerDatabase, Oqtane.Database.SqlServer`
/// </summary>
public string DBType { get; set; }
/// <summary>
/// Software package responsible for using this DB - like `Oqtane.Database.MySQL`
/// </summary>
public string Package { get; set; }
}
}

View File

@ -5,7 +5,6 @@ namespace Oqtane.Shared
{
public string ConnectionString { get; set; }
public string DatabaseType { get; set; }
public string DatabasePackage { get; set; }
public string Aliases { get; set; }
public string TenantName { get; set; }
public bool IsNewTenant { get; set; }

View File

@ -16,5 +16,7 @@ namespace Oqtane.Shared
public const string DefaultThemeKey = "DefaultTheme";
public const string DefaultLayoutKey = "DefaultLayout";
public const string DefaultContainerKey = "DefaultContainer";
public const string AvailableDatabasesSection = "AvailableDatabases";
}
}