23 lines
875 B
C#
23 lines
875 B
C#
namespace Disco.Data.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class DBv25 : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AlterColumn("dbo.UserAttachments", "Comments", c => c.String(maxLength: 500));
|
|
AlterColumn("dbo.JobAttachments", "Comments", c => c.String(maxLength: 500));
|
|
AlterColumn("dbo.DeviceAttachments", "Comments", c => c.String(maxLength: 500));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
AlterColumn("dbo.DeviceAttachments", "Comments", c => c.String(nullable: false, maxLength: 500));
|
|
AlterColumn("dbo.JobAttachments", "Comments", c => c.String(nullable: false, maxLength: 500));
|
|
AlterColumn("dbo.UserAttachments", "Comments", c => c.String(nullable: false, maxLength: 500));
|
|
}
|
|
}
|
|
}
|