Skip to content
Snippets Groups Projects
Commit 8483dd62 authored by Hanna Führ's avatar Hanna Führ
Browse files

Merge remote-tracking branch 'remotes/origin/dev' into Issue/2265-UpdatingS3EndpointUDE

parents 923e4bd6 15b42c83
No related branches found
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment