diff options
author | crupest <crupest@outlook.com> | 2020-02-29 19:32:58 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-02-29 19:32:58 +0800 |
commit | 824da227f6a18c9aa265e5a7b16557b5e22f485f (patch) | |
tree | b4f26809215caf4fc31be5a097819f5ad2f2a9d3 /Timeline/Migrations/DatabaseContextModelSnapshot.cs | |
parent | 11ab08bc1b61636e0681914c62794720e4ac6ac4 (diff) | |
download | timeline-824da227f6a18c9aa265e5a7b16557b5e22f485f.tar.gz timeline-824da227f6a18c9aa265e5a7b16557b5e22f485f.tar.bz2 timeline-824da227f6a18c9aa265e5a7b16557b5e22f485f.zip |
Now posts use local id in same timeline. Also fixed some unconforming place in migrations.
Diffstat (limited to 'Timeline/Migrations/DatabaseContextModelSnapshot.cs')
-rw-r--r-- | Timeline/Migrations/DatabaseContextModelSnapshot.cs | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Timeline/Migrations/DatabaseContextModelSnapshot.cs b/Timeline/Migrations/DatabaseContextModelSnapshot.cs index 2c97ea79..c4b00f47 100644 --- a/Timeline/Migrations/DatabaseContextModelSnapshot.cs +++ b/Timeline/Migrations/DatabaseContextModelSnapshot.cs @@ -23,9 +23,9 @@ namespace Timeline.Migrations .HasColumnName("id")
.HasColumnType("INTEGER");
- b.Property<byte[]>("Token")
+ b.Property<byte[]>("Key")
.IsRequired()
- .HasColumnName("token")
+ .HasColumnName("key")
.HasColumnType("BLOB");
b.HasKey("Id");
@@ -44,6 +44,10 @@ namespace Timeline.Migrations .HasColumnName("create_time")
.HasColumnType("TEXT");
+ b.Property<long>("CurrentPostLocalId")
+ .HasColumnName("current_post_local_id")
+ .HasColumnType("INTEGER");
+
b.Property<string>("Description")
.HasColumnName("description")
.HasColumnType("TEXT");
@@ -110,6 +114,10 @@ namespace Timeline.Migrations .HasColumnName("last_updated")
.HasColumnType("TEXT");
+ b.Property<long>("LocalId")
+ .HasColumnName("local_id")
+ .HasColumnType("INTEGER");
+
b.Property<DateTime>("Time")
.HasColumnName("time")
.HasColumnType("TEXT");
|