mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-11-26 00:05:27 +01:00
19 lines
411 B
C#
19 lines
411 B
C#
namespace RSystem.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class AddMaturaNumber : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.Recruits", "MaturaNumber", c => c.String());
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.Recruits", "MaturaNumber");
|
|
}
|
|
}
|
|
}
|