-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cbw-1249/add-observability' into cbw-1261/sc-listing-en…
…dpoints
- Loading branch information
Showing
68 changed files
with
577 additions
and
596 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...tions/SmartContractAggregateJobOptions.cs → ...igurations/ContractAggregateJobOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...urations/SmartContractAggregateOptions.cs → ...onfigurations/ContractAggregateOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...tContractEventEntityTypeConfigurations.cs → .../ContractEventEntityTypeConfigurations.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...end/Application/Aggregates/Contract/Configurations/ContractJobEntityTypeConfigurations.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using Application.Aggregates.Contract.Entities; | ||
using Microsoft.EntityFrameworkCore; | ||
using Microsoft.EntityFrameworkCore.Metadata.Builders; | ||
|
||
namespace Application.Aggregates.Contract.Configurations; | ||
|
||
public sealed class ContractJobEntityTypeConfigurations : IEntityTypeConfiguration<ContractJob> | ||
{ | ||
public void Configure(EntityTypeBuilder<ContractJob> builder) | ||
{ | ||
builder.ToTable("graphql_contract_jobs"); | ||
builder.HasKey(x => x.Job); | ||
builder.Property(x => x.Job) | ||
.HasColumnName("job"); | ||
builder.Property(x => x.CreatedAt) | ||
.HasColumnName("created_at"); | ||
} | ||
} |
12 changes: 6 additions & 6 deletions
12
...ractReadHeightEntityTypeConfigurations.cs → ...ractReadHeightEntityTypeConfigurations.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...tractLinkEventEntityTypeConfigurations.cs → ...tractLinkEventEntityTypeConfigurations.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ReferenceEventEntityTypeConfigurations.cs → ...ReferenceEventEntityTypeConfigurations.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.