19 lines
403 B
C#
19 lines
403 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170921100547)]
|
|
public class KRETA_3277 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Check4TValidation.sql");
|
|
CreateSchemaStoredProcedures("sp_Check4TValidation");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|