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