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