Skip to content
Snippets Groups Projects

Fix: Allowing only top-level organizations under participating organizations

Merged Petar Hristov requested to merge Issue/2355-topLevelOrg into dev
3 files
+ 22
0
Compare changes
  • Side-by-side
  • Inline
Files
3
using FluentMigrator;
namespace Coscine.Migrations.Migrations
{
//yyyymmddhhmm
[Migration(202302271200)]
public class Migration202302271200TopLevelProjectOrganizations : Migration
{
public override void Up()
{
Execute.EmbeddedScript("Migration202302271200TopLevelProjectOrganizations_up.sql");
}
public override void Down()
{
// I've added no down script since the change itself has no correct reversal.
}
}
}
\ No newline at end of file
Loading