Skip to content

Commit c4ac208

Browse files
committed
Add TimestampField to Project mapping
For integration test purposes. See #1977
1 parent 6fe6205 commit c4ac208

File tree

1 file changed

+3
-0
lines changed
  • src/Tests/Framework/Integration/Bootstrappers

1 file changed

+3
-0
lines changed

src/Tests/Framework/Integration/Bootstrappers/Seeder.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ private void CreateProjectIndex()
130130
}
131131

132132
public static TypeMappingDescriptor<Project> MapProject(TypeMappingDescriptor<Project> m) => m
133+
.TimestampField(t => t
134+
.Enabled()
135+
)
133136
.Properties(props => props
134137
.String(s => s
135138
.Name(p => p.Name)

0 commit comments

Comments
 (0)