diff options
author | crupest <crupest@outlook.com> | 2020-02-29 18:12:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-29 18:12:13 +0800 |
commit | b6b6c3089d42adc3d39aeb5efcbce7bdef09b3cb (patch) | |
tree | 9cbe0f8f6e6be22f66893b666ca537c0aebf268b /Timeline/Migrations/DatabaseContextModelSnapshot.cs | |
parent | 6bf12fb184ee87ba28293ecc576915cbbeab0cf0 (diff) | |
parent | 668459f88fdef5f385759e53ee7f5206131da98b (diff) | |
download | timeline-b6b6c3089d42adc3d39aeb5efcbce7bdef09b3cb.tar.gz timeline-b6b6c3089d42adc3d39aeb5efcbce7bdef09b3cb.tar.bz2 timeline-b6b6c3089d42adc3d39aeb5efcbce7bdef09b3cb.zip |
Merge pull request #66 from crupest/timeline-name
Widen timeline name constraint.
Diffstat (limited to 'Timeline/Migrations/DatabaseContextModelSnapshot.cs')
-rw-r--r-- | Timeline/Migrations/DatabaseContextModelSnapshot.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Timeline/Migrations/DatabaseContextModelSnapshot.cs b/Timeline/Migrations/DatabaseContextModelSnapshot.cs index d5f9c0e4..2c97ea79 100644 --- a/Timeline/Migrations/DatabaseContextModelSnapshot.cs +++ b/Timeline/Migrations/DatabaseContextModelSnapshot.cs @@ -140,8 +140,7 @@ namespace Timeline.Migrations b.Property<string>("ETag")
.HasColumnName("etag")
- .HasColumnType("TEXT")
- .HasMaxLength(30);
+ .HasColumnType("TEXT");
b.Property<DateTime>("LastModified")
.HasColumnName("last_modified")
@@ -172,8 +171,7 @@ namespace Timeline.Migrations b.Property<string>("Nickname")
.HasColumnName("nickname")
- .HasColumnType("TEXT")
- .HasMaxLength(100);
+ .HasColumnType("TEXT");
b.Property<string>("Password")
.IsRequired()
@@ -188,8 +186,7 @@ namespace Timeline.Migrations b.Property<string>("Username")
.IsRequired()
.HasColumnName("username")
- .HasColumnType("TEXT")
- .HasMaxLength(26);
+ .HasColumnType("TEXT");
b.Property<long>("Version")
.ValueGeneratedOnAdd()
|