Skip to content
Snippets Groups Projects
Commit 35df801e authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Merge branch 'dev' into 'master'

Release: Sprint/2022 21 :robot:

See merge request !93
parents 6a9038f8 fc816208
No related branches found
No related tags found
1 merge request!93Release: Sprint/2022 21 :robot:
using FluentMigrator;
namespace Coscine.Migrations.Migrations
{
//yyyymmddhhmm
[Migration(202210180955)]
public class Migration202210180955GitlabResourceRenamed : Migration
{
public override void Down()
{
Update
.Table("ResourceTypes")
.Set(new { SpecificType = "gitlabrwth" })
.Where(new { SpecificType = "gitlab" });
}
public override void Up()
{
Update
.Table("ResourceTypes")
.Set(new { SpecificType = "gitlab" })
.Where(new { SpecificType = "gitlabrwth" });
}
}
}
\ No newline at end of file
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
using FluentMigrator;
namespace Coscine.Migrations.Migrations
{
//yyyymmddhhmm
[Migration(202210240835)]
public class Migration202210240835UDEs3EndpointRDS : Migration
{
public override void Down()
{
Update
.Table("RDSResourceType")
.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("RDSResourceType")
.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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment