namespace CMS.Plugin.HIAWms.Domain;
|
|
/// <summary>
|
/// 数据库属性定义
|
/// </summary>
|
public static class CMSPluginDbProperties
|
{
|
/// <summary>
|
/// Gets or sets the database table prefix.
|
/// </summary>
|
public static string DbTablePrefix { get; set; } = "SCMS";
|
|
/// <summary>
|
/// Gets or sets the database schema.
|
/// </summary>
|
public static string DbSchema { get; set; }
|
|
/// <summary>
|
/// The connection string name
|
/// </summary>
|
public const string ConnectionStringName = "HIAWms";
|
|
/// <summary>
|
/// The migrations history table
|
/// </summary>
|
public const string MigrationsHistoryTable = "__EFMigrationsHistoryForHIAWms";
|
}
|