19 lines
412 B
C#
19 lines
412 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190604093032)]
|
|
public class KRETA2_24 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetRendszerbeallitasDateValue.sql");
|
|
CreateSchemaSPFN("fnGetRendszerbeallitasDateValue");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|