aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Configs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-01-05 23:19:56 +0800
committercrupest <crupest@outlook.com>2020-01-05 23:19:56 +0800
commitb629695c7c28fb89b91f2f7e09f7eea632c21aba (patch)
tree5c884cc6752341a4dde274f6fafd79ffcb4fb972 /Timeline/Configs
parent24f5c10f5c96b07bc8c1280a1198024c0f00c101 (diff)
downloadtimeline-b629695c7c28fb89b91f2f7e09f7eea632c21aba.tar.gz
timeline-b629695c7c28fb89b91f2f7e09f7eea632c21aba.tar.bz2
timeline-b629695c7c28fb89b91f2f7e09f7eea632c21aba.zip
Use sqlite development database.
Diffstat (limited to 'Timeline/Configs')
-rw-r--r--Timeline/Configs/DatabaseConfig.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Timeline/Configs/DatabaseConfig.cs b/Timeline/Configs/DatabaseConfig.cs
index c9309b08..e1231bcd 100644
--- a/Timeline/Configs/DatabaseConfig.cs
+++ b/Timeline/Configs/DatabaseConfig.cs
@@ -2,6 +2,10 @@ namespace Timeline.Configs
{
public class DatabaseConfig
{
+ public bool UseDevelopment { get; set; } = false;
+
public string ConnectionString { get; set; } = default!;
+
+ public string DevelopmentConnectionString { get; set; } = default!;
}
}