19 lines
422 B
C#
19 lines
422 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180601151824)]
|
|
public class KRETA_5646 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetTanuloOztalyaAdottIdopontban.sql");
|
|
CreateSchemaFunctions("fnGetTanuloOztalyaAdottIdopontban");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|