Add support for Sqlite - Installation path tested but AddSite not supported yet
This commit is contained in:
@ -7,6 +7,7 @@ namespace Oqtane.Models
|
||||
public int TenantId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string DBConnectionString { get; set; }
|
||||
public string DBType { get; set; }
|
||||
public string Version { get; set; }
|
||||
public string CreatedBy { get; set; }
|
||||
public DateTime CreatedOn { get; set; }
|
||||
|
@ -3,6 +3,7 @@ namespace Oqtane.Shared
|
||||
public class InstallConfig
|
||||
{
|
||||
public string ConnectionString { get; set; }
|
||||
public string DatabaseType { get; set; }
|
||||
public string Aliases { get; set; }
|
||||
public string TenantName { get; set; }
|
||||
public bool IsNewTenant { get; set; }
|
||||
|
@ -2,12 +2,18 @@
|
||||
{
|
||||
public static class SettingKeys
|
||||
{
|
||||
public const string ConnectionStringsSection = "ConnectionStrings";
|
||||
public const string DatabaseSection = "Database";
|
||||
public const string InstallationSection = "Installation";
|
||||
|
||||
public const string ConnectionStringKey = "DefaultConnection";
|
||||
|
||||
public const string DatabaseTypeKey = "DatabaseType";
|
||||
|
||||
public const string DefaultAliasKey = "DefaultAlias";
|
||||
public const string HostPasswordKey = "HostPassword";
|
||||
public const string HostEmailKey = "HostEmail";
|
||||
public const string SiteTemplateKey = "SiteTemplate";
|
||||
public const string ConnectionStringKey = "DefaultConnection";
|
||||
public const string DefaultThemeKey = "DefaultTheme";
|
||||
public const string DefaultLayoutKey = "DefaultLayout";
|
||||
public const string DefaultContainerKey = "DefaultContainer";
|
||||
|
Reference in New Issue
Block a user