diff options
author | crupest <crupest@outlook.com> | 2021-02-04 21:39:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-04 21:39:03 +0800 |
commit | 76d8616a6ba18f2bf86c46d865a9426e5accf55f (patch) | |
tree | ae0a8eb5f5a2d35114247f44a35e35e20aa2dee7 /BackEnd/Timeline/Migrations/DatabaseContextModelSnapshot.cs | |
parent | 85247119bb82189baf100cd369e2f5993ee9d296 (diff) | |
parent | c09ec62c64fe2d7cd09f7a2d9989ad96b43606a3 (diff) | |
download | timeline-76d8616a6ba18f2bf86c46d865a9426e5accf55f.tar.gz timeline-76d8616a6ba18f2bf86c46d865a9426e5accf55f.tar.bz2 timeline-76d8616a6ba18f2bf86c46d865a9426e5accf55f.zip |
Merge pull request #244 from crupest/color
Backend: Color
Diffstat (limited to 'BackEnd/Timeline/Migrations/DatabaseContextModelSnapshot.cs')
-rw-r--r-- | BackEnd/Timeline/Migrations/DatabaseContextModelSnapshot.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Migrations/DatabaseContextModelSnapshot.cs b/BackEnd/Timeline/Migrations/DatabaseContextModelSnapshot.cs index 6b547a55..2e2b0d36 100644 --- a/BackEnd/Timeline/Migrations/DatabaseContextModelSnapshot.cs +++ b/BackEnd/Timeline/Migrations/DatabaseContextModelSnapshot.cs @@ -129,6 +129,10 @@ namespace Timeline.Migrations .HasColumnType("INTEGER")
.HasColumnName("id");
+ b.Property<string>("Color")
+ .HasColumnType("TEXT")
+ .HasColumnName("color");
+
b.Property<DateTime>("CreateTime")
.HasColumnType("TEXT")
.HasColumnName("create_time");
@@ -214,6 +218,10 @@ namespace Timeline.Migrations .HasColumnType("INTEGER")
.HasColumnName("author");
+ b.Property<string>("Color")
+ .HasColumnType("TEXT")
+ .HasColumnName("color");
+
b.Property<string>("Content")
.HasColumnType("TEXT")
.HasColumnName("content");
|