19 lines
426 B
C#
19 lines
426 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class add_NumberOfEmployees : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.Companies", "NumberOfEmployees", c => c.Int());
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.Companies", "NumberOfEmployees");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|