mirror of https://github.com/abpframework/abp.git
10 changed files with 30 additions and 36 deletions
@ -1,11 +0,0 @@ |
|||
namespace Volo.Abp.FeatureManagement |
|||
{ |
|||
public static class FeatureManagementConsts |
|||
{ |
|||
public const string DefaultDbTablePrefix = "Abp"; |
|||
|
|||
public const string DefaultDbSchema = null; |
|||
|
|||
public const string ConnectionStringName = "AbpFeatureManagement"; |
|||
} |
|||
} |
|||
@ -0,0 +1,13 @@ |
|||
using Volo.Abp.Data; |
|||
|
|||
namespace Volo.Abp.FeatureManagement |
|||
{ |
|||
public static class FeatureManagementDbProperties |
|||
{ |
|||
public static string DbTablePrefix { get; } = AbpCommonDbProperties.DbTablePrefix; |
|||
|
|||
public static string DbSchema { get; } = AbpCommonDbProperties.DbSchema; |
|||
|
|||
public const string ConnectionStringName = "AbpFeatureManagement"; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue