Skip to content
Snippets Groups Projects

Add Owner definition

Compare and
1 file
+ 2
0
Compare changes
  • Side-by-side
  • Inline
@@ -74,6 +74,8 @@ namespace Coscine.Database.Migration.Migrations
.WithColumn("Id").AsGuid().PrimaryKey().WithDefault(SystemMethods.NewGuid)
.WithColumn("DisplayName").AsString(50).NotNullable()
.WithColumn("Description").AsString(50).NotNullable();
Insert.IntoTable("Roles").Row(new { DisplayName = "Owner", Description = "Owner of the project." });
#endregion
#region Resources
Loading