Feature #42: Active Directory Interop Upgrade

AD Interop moved to Disco.Services; Supports multi-domain environments,
sites, and searching restricted with OUs.
This commit is contained in:
Gary Sharp
2014-04-10 17:58:04 +10:00
parent b841c6b2c0
commit db73cc1a12
218 changed files with 6383 additions and 2535 deletions
+27
View File
@@ -0,0 +1,27 @@
// <auto-generated />
namespace Disco.Data.Migrations
{
using System.Data.Entity.Migrations;
using System.Data.Entity.Migrations.Infrastructure;
using System.Resources;
public sealed partial class DBv13 : IMigrationMetadata
{
private readonly ResourceManager Resources = new ResourceManager(typeof(DBv13));
string IMigrationMetadata.Id
{
get { return "201404080227546_DBv13"; }
}
string IMigrationMetadata.Source
{
get { return null; }
}
string IMigrationMetadata.Target
{
get { return Resources.GetString("Target"); }
}
}
}
@@ -0,0 +1,18 @@
namespace Disco.Data.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class DBv13 : DbMigration
{
public override void Up()
{
AlterColumn("dbo.Devices", "ComputerName", c => c.String(maxLength: 50));
}
public override void Down()
{
AlterColumn("dbo.Devices", "ComputerName", c => c.String(maxLength: 24));
}
}
}
File diff suppressed because one or more lines are too long