From 2cf56624615295cf9ee00a24c880ec05c73c2b06 Mon Sep 17 00:00:00 2001 From: James Kolpack Date: Mon, 18 Apr 2016 11:15:09 -0400 Subject: [PATCH] Don't drop database from now on --- Core/DAL/LeafWebInitializer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/DAL/LeafWebInitializer.cs b/Core/DAL/LeafWebInitializer.cs index a6582fd..e9e7a64 100644 --- a/Core/DAL/LeafWebInitializer.cs +++ b/Core/DAL/LeafWebInitializer.cs @@ -7,7 +7,7 @@ using NLog; namespace LeafWeb.Core.DAL { - public class LeafWebInitializer : DropCreateDatabaseIfModelChanges + public class LeafWebInitializer : CreateDatabaseIfNotExists { private const string ContentDirectory = @"DAL\InitialData\";