Skip to content
Snippets Groups Projects

Release: Sprint/2022 21 :robot:

Merged Petar Hristov requested to merge dev into master
3 files
+ 75
0
Compare changes
  • Side-by-side
  • Inline
Files
3
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
Loading