mirror of https://github.com/abpframework/abp.git
1 changed files with 18 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||
namespace Volo.Abp.Data |
|||
{ |
|||
public static class AbpCommonDbProperties |
|||
{ |
|||
/// <summary>
|
|||
/// This table prefix is shared by most of the ABP modules.
|
|||
/// You can change it to set table prefix for all modules using this.
|
|||
///
|
|||
/// Default value: "Abp".
|
|||
/// </summary>
|
|||
public static string DbTablePrefix { get; } = "Abp"; |
|||
|
|||
/// <summary>
|
|||
/// Default value: null.
|
|||
/// </summary>
|
|||
public static string DbSchema { get; } = null; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue