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