11 lines
214 B
C#
11 lines
214 B
C#
|
namespace NG_2023_Kanban.DbStartup
|
|||
|
{
|
|||
|
public class DbInitializer
|
|||
|
{
|
|||
|
public static void Initialize(DatabaseContext context)
|
|||
|
{
|
|||
|
context.Database.EnsureCreated();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|