222
schangxiang@126.com
2025-05-11 847e7a89974cb6f5bcfbf7fc8fbe84f085502af6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace CMS.Plugin.PipeLineLems.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 = "PipeLineLems";
 
    /// <summary>
    /// The migrations history table
    /// </summary>
    public const string MigrationsHistoryTable = "__EFMigrationsHistoryForPipeLineLems";
}