diff options
author | crupest <crupest@outlook.com> | 2020-01-05 23:19:56 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-01-05 23:19:56 +0800 |
commit | ff29d3f9d7b3a1478aefff0a18af7c37f746c40c (patch) | |
tree | 5c884cc6752341a4dde274f6fafd79ffcb4fb972 /Timeline/Configs/DatabaseConfig.cs | |
parent | 41e33d570ac7181824b7cd3612010bb1962af540 (diff) | |
download | timeline-ff29d3f9d7b3a1478aefff0a18af7c37f746c40c.tar.gz timeline-ff29d3f9d7b3a1478aefff0a18af7c37f746c40c.tar.bz2 timeline-ff29d3f9d7b3a1478aefff0a18af7c37f746c40c.zip |
Use sqlite development database.
Diffstat (limited to 'Timeline/Configs/DatabaseConfig.cs')
-rw-r--r-- | Timeline/Configs/DatabaseConfig.cs | 4 |
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!;
}
}
|