Skip to content

Commit

Permalink
fix(n2n): add default value for companyApplicationType (#257)
Browse files Browse the repository at this point in the history
Refs: CPLP-3152
Reviewed-By: Norbert Truchsess <[email protected]>
  • Loading branch information
Phil91 authored Sep 8, 2023
1 parent f7f9476 commit cc2671d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ protected override void Up(MigrationBuilder migrationBuilder)

migrationBuilder.Sql("UPDATE portal.identity_providers set identity_provider_type_id = 3 where identity_provider_category_id = 1;");
migrationBuilder.Sql("UPDATE portal.identity_providers set identity_provider_category_id = 2 where identity_provider_category_id = 1;");
migrationBuilder.Sql("UPDATE portal.company_applications set company_application_type_id = 1;");

migrationBuilder.DeleteData(
schema: "portal",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@
********************************************************************************/

// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
using Org.Eclipse.TractusX.Portal.Backend.PortalBackend.PortalEntities;

#nullable disable
Expand Down

0 comments on commit cc2671d

Please sign in to comment.