Created
March 3, 2022 02:24
-
-
Save ghhv/1c86871f7a480a1ce324613bb6ca5c4d to your computer and use it in GitHub Desktop.
Fix 2 for Oqtane V3.0.3 bug with non MS SQL databases
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
using Microsoft.EntityFrameworkCore.Infrastructure; | |
using Microsoft.EntityFrameworkCore.Migrations; | |
using Oqtane.Databases.Interfaces; | |
using Oqtane.Migrations.EntityBuilders; | |
using Oqtane.Repository; | |
using Oqtane.Shared; | |
namespace Oqtane.Migrations.Tenant | |
{ | |
[DbContext(typeof(TenantDBContext))] | |
[Migration("Tenant.03.00.02.01")] | |
public class UpdateSettingIsPublic : MultiDatabaseMigration | |
{ | |
public UpdateSettingIsPublic(IDatabase database) : base(database) | |
{ | |
} | |
protected override void Up(MigrationBuilder migrationBuilder) | |
{ | |
var settingEntityBuilder = new SettingEntityBuilder(migrationBuilder, ActiveDatabase); | |
settingEntityBuilder.UpdateColumn("IsPublic", "1", "bool", $"{RewriteName("SettingName")} NOT LIKE 'SMTP%'"); | |
} | |
protected override void Down(MigrationBuilder migrationBuilder) | |
{ | |
var settingEntityBuilder = new SettingEntityBuilder(migrationBuilder, ActiveDatabase); | |
settingEntityBuilder.UpdateColumn("IsPublic", "0", "bool", $"{RewriteName("SettingName")} NOT LIKE 'SMTP%'"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment