Skip to content
Snippets Groups Projects

Update: Updating s3_endpoint UDE

Merged Hanna Führ requested to merge Issue/2265-UpdatingS3EndpointUDE into dev
2 files
+ 50
0
Compare changes
  • Side-by-side
  • Inline
Files
2
using FluentMigrator;
namespace Coscine.Migrations.Migrations
{
//yyyymmddhhmm
[Migration(202210240831)]
public class Migration202210240831UDEs3EndpointRDSS3 : Migration
{
public override void Down()
{
Update
.Table("RdsS3ResourceType")
.Set(new { Endpoint = "https://data-01-ecs-sh.fds.uni-due.de:9021" })
.Where(new { Endpoint = "https://ecs-ude.fds.uni-due.de:443" });
}
public override void Up()
{
Update
.Table("RdsS3ResourceType")
.Set(new { Endpoint = "https://ecs-ude.fds.uni-due.de:443" })
.Where(new { Endpoint = "https://data-01-ecs-sh.fds.uni-due.de:9021" });
}
}
}
\ No newline at end of file
Loading