9e2f9a646f
No longer needed.
19 lines
405 B
C#
19 lines
405 B
C#
namespace Disco.Data.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class DBv7 : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
DropColumn("dbo.Devices", "Active");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
AddColumn("dbo.Devices", "Active", c => c.Boolean(nullable: false));
|
|
}
|
|
}
|
|
}
|