15 lines
444 B
C#
15 lines
444 B
C#
// Copyright (c) HelloShop Corporation. All rights reserved.
|
|
// See the license file in the project root for more information.
|
|
|
|
namespace HelloShop.OrderingService.Constants
|
|
{
|
|
public class DbConstants
|
|
{
|
|
public const string MasterConnectionStringName = "orderingdb";
|
|
|
|
public const string SlaveConnectionStringName = "orderingdb";
|
|
|
|
public const string MigrationsHistoryTableName = "migrations_history";
|
|
}
|
|
}
|