21 lines
517 B
C#
21 lines
517 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180209141627)]
|
|
public class HELP_27893 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetESL_A03T01_1.sql");
|
|
CreateSchemaStoredProcedures("sp_GetESL_A03T01_1");
|
|
ExecuteScripts("sp_GetESL_A03T02_1.sql");
|
|
CreateSchemaStoredProcedures("sp_GetESL_A03T02_1");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|