mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
- 修复 CodeFirst IsNullable 迁移脚本重复 NOT NULL 语法错误;
This commit is contained in:
@ -21,6 +21,9 @@ namespace FreeSql.Tests.Odbc.Oracle
|
||||
public Guid Id { get; set; }
|
||||
[Column(StringLength = 50)]
|
||||
public string Title { get; set; }
|
||||
|
||||
[Column(IsNullable = false, StringLength = 50)]
|
||||
public string TitleSub { get; set; }
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
Reference in New Issue
Block a user