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