maliming
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
24 changed files with
51 additions and
9 deletions
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20250707124203_Initial.Designer.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/20250707124203_Initial.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Migrations/MyProjectNameDbContextModelSnapshot.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20250707124326_Initial.Designer.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/20250707124326_Initial.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/Migrations/MyProjectNameDbContextModelSnapshot.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20250707124118_Initial.Designer.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/20250707124118_Initial.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/Migrations/MyProjectNameDbContextModelSnapshot.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20250707124141_Initial.Designer.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/20250707124141_Initial.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/Migrations/MyProjectNameDbContextModelSnapshot.cs
-
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20250707124211_Initial.Designer.cs
-
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/20250707124211_Initial.cs
-
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.EntityFrameworkCore/Migrations/MyProjectNameDbContextModelSnapshot.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20250707124242_Initial.Designer.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/20250707124242_Initial.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/Migrations/AuthServerDbContextModelSnapshot.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20250707124228_Initial.Designer.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/Migrations/20250707124228_Initial.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20250707124251_Initial.Designer.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/Migrations/20250707124251_Initial.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20250707124303_Initial.Designer.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/Migrations/20250707124303_Initial.cs
|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(MyProjectNameDbContext))] |
|
|
|
[Migration("20250611122251_Initial")] |
|
|
|
[Migration("20250707124203_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -1229,6 +1229,9 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
@ -427,6 +427,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations |
|
|
|
RedirectUris = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Requirements = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Settings = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
FrontChannelLogoutUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ClientUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
LogoUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false), |
|
|
|
@ -1226,6 +1226,9 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
|
|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(MyProjectNameDbContext))] |
|
|
|
[Migration("20250611122409_Initial")] |
|
|
|
[Migration("20250707124326_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -1229,6 +1229,9 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
@ -427,6 +427,7 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
RedirectUris = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Requirements = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Settings = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
FrontChannelLogoutUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ClientUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
LogoUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false), |
|
|
|
@ -1226,6 +1226,9 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
|
|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Host.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(MyProjectNameDbContext))] |
|
|
|
[Migration("20250611122225_Initial")] |
|
|
|
[Migration("20250707124118_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -1229,6 +1229,9 @@ namespace MyCompanyName.MyProjectName.Host.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
@ -427,6 +427,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations |
|
|
|
RedirectUris = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Requirements = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Settings = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
FrontChannelLogoutUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ClientUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
LogoUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false), |
|
|
|
@ -1226,6 +1226,9 @@ namespace MyCompanyName.MyProjectName.Host.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
|
|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Mvc.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(MyProjectNameDbContext))] |
|
|
|
[Migration("20250611122237_Initial")] |
|
|
|
[Migration("20250707124141_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -1229,6 +1229,9 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
@ -427,6 +427,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations |
|
|
|
RedirectUris = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Requirements = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Settings = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
FrontChannelLogoutUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ClientUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
LogoUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false), |
|
|
|
@ -1226,6 +1226,9 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
|
|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(MyProjectNameDbContext))] |
|
|
|
[Migration("20250611122258_Initial")] |
|
|
|
[Migration("20250707124211_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -1285,6 +1285,9 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
@ -449,6 +449,7 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
RedirectUris = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Requirements = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Settings = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
FrontChannelLogoutUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ClientUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
LogoUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false), |
|
|
|
@ -1282,6 +1282,9 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
|
|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(AuthServerDbContext))] |
|
|
|
[Migration("20250611122321_Initial")] |
|
|
|
[Migration("20250707124242_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -1229,6 +1229,9 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
@ -427,6 +427,7 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
RedirectUris = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Requirements = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
Settings = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
FrontChannelLogoutUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ClientUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
LogoUri = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false), |
|
|
|
@ -1226,6 +1226,9 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
.HasColumnType("nvarchar(max)") |
|
|
|
.HasColumnName("ExtraProperties"); |
|
|
|
|
|
|
|
b.Property<string>("FrontChannelLogoutUri") |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<bool>("IsDeleted") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("bit") |
|
|
|
|
|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(UnifiedDbContext))] |
|
|
|
[Migration("20250611122311_Initial")] |
|
|
|
[Migration("20250707124228_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -12,7 +12,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(MyProjectNameHttpApiHostMigrationsDbContext))] |
|
|
|
[Migration("20250611122327_Initial")] |
|
|
|
[Migration("20250707124251_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(UnifiedDbContext))] |
|
|
|
[Migration("20250611122337_Initial")] |
|
|
|
[Migration("20250707124303_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|