19 lines
458 B
C#
19 lines
458 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class WebSiteInfoAddColumn : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.UserAccountTypes", "loginImageBackGroundColor", c => c.String());
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.UserAccountTypes", "loginImageBackGroundColor");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|