mirror of https://github.com/abpframework/abp.git
5 changed files with 20 additions and 10 deletions
@ -1,10 +1,12 @@ |
|||
namespace Volo.CmsKit; |
|||
using Volo.Abp.Data; |
|||
|
|||
namespace Volo.CmsKit; |
|||
|
|||
public static class AbpCmsKitDbProperties |
|||
{ |
|||
public static string DbTablePrefix { get; set; } = "Cms"; |
|||
|
|||
public static string DbSchema { get; set; } = null; |
|||
public static string DbSchema { get; set; } = AbpCommonDbProperties.DbSchema; |
|||
|
|||
public const string ConnectionStringName = "CmsKit"; |
|||
} |
|||
|
|||
@ -1,10 +1,12 @@ |
|||
namespace Volo.Abp.IdentityServer; |
|||
using Volo.Abp.Data; |
|||
|
|||
namespace Volo.Abp.IdentityServer; |
|||
|
|||
public static class AbpIdentityServerDbProperties |
|||
{ |
|||
public static string DbTablePrefix { get; set; } = "IdentityServer"; |
|||
|
|||
public static string DbSchema { get; set; } = null; |
|||
public static string DbSchema { get; set; } = AbpCommonDbProperties.DbSchema; |
|||
|
|||
public const string ConnectionStringName = "AbpIdentityServer"; |
|||
} |
|||
|
|||
@ -1,10 +1,12 @@ |
|||
namespace Volo.Abp.OpenIddict; |
|||
using Volo.Abp.Data; |
|||
|
|||
namespace Volo.Abp.OpenIddict; |
|||
|
|||
public static class AbpOpenIddictDbProperties |
|||
{ |
|||
public static string DbTablePrefix { get; set; } = "OpenIddict"; |
|||
|
|||
public static string DbSchema { get; set; } = null; |
|||
public static string DbSchema { get; set; } = AbpCommonDbProperties.DbSchema; |
|||
|
|||
public const string ConnectionStringName = "AbpOpenIddict"; |
|||
} |
|||
|
|||
Loading…
Reference in new issue