17 lines
423 B
C#
17 lines
423 B
C#
using GerstITS.Data.EntityFramework.PostgreSql.Migrations;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace GerstITS.Examples.Data.Migrations;
|
|
|
|
public sealed class CustomerDatabaseConfigurator : PostgreSqlDatabaseConfiguratorBase<CustomerDbContext>
|
|
{
|
|
#region Constructors
|
|
|
|
public CustomerDatabaseConfigurator(IConfiguration configuration)
|
|
: base("examples", configuration)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
}
|