#27 added confirm endpoint for stripe

This commit is contained in:
Dominic Villemure
2024-04-24 22:14:14 -04:00
parent 6883855ecb
commit cba08b0464
8 changed files with 498 additions and 0 deletions

View File

@@ -76,6 +76,7 @@ namespace Hutopy.Infrastructure.Migrations
.HasColumnType("uniqueidentifier");
b.Property<decimal>("Amount")
.HasPrecision(18, 2)
.HasColumnType("decimal(18,2)");
b.Property<string>("ApplicationUserId")
@@ -92,6 +93,9 @@ namespace Hutopy.Infrastructure.Migrations
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<bool>("IsConfirmed")
.HasColumnType("bit");
b.Property<DateTimeOffset>("LastModified")
.HasColumnType("datetimeoffset");