diff options
author | 杨宇千 <crupest@outlook.com> | 2019-08-21 23:55:42 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-08-21 23:55:42 +0800 |
commit | e7714754d8f59bb8dc29aeb6340380e93310175b (patch) | |
tree | 7797613e18dd50665ac50881541f645413dbca97 /Timeline/Entities | |
parent | dbc8d78dc0f21f423a0fe2db9dd782da43b5b468 (diff) | |
download | timeline-e7714754d8f59bb8dc29aeb6340380e93310175b.tar.gz timeline-e7714754d8f59bb8dc29aeb6340380e93310175b.tar.bz2 timeline-e7714754d8f59bb8dc29aeb6340380e93310175b.zip |
Add validators.
Diffstat (limited to 'Timeline/Entities')
-rw-r--r-- | Timeline/Entities/UserDetail.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/Entities/UserDetail.cs b/Timeline/Entities/UserDetail.cs index ee829717..9bc6f5e5 100644 --- a/Timeline/Entities/UserDetail.cs +++ b/Timeline/Entities/UserDetail.cs @@ -12,7 +12,7 @@ namespace Timeline.Entities [Column("qq"), MaxLength(15)]
public string QQ { get; set; }
- [Column("email"), MaxLength(30)]
+ [Column("email"), MaxLength(50)]
public string EMail { get; set; }
[Column("phone_number"), MaxLength(15)]
|