10a38af08b
Device Profile setting which specifies whether assigned users are set as Local Administrators. Default is true (which maintains compatibility).
19 lines
472 B
C#
19 lines
472 B
C#
namespace Disco.Data.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class DBv10 : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.DeviceProfiles", "AssignedUserLocalAdmin", c => c.Boolean(nullable: false, defaultValue: true));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.DeviceProfiles", "AssignedUserLocalAdmin");
|
|
}
|
|
}
|
|
}
|