21 lines
490 B
C#
21 lines
490 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180926101814)]
|
|
public class OM_1408 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
|
|
ExecuteScripts("fnGetUtkozesByOsztalycsoport.sql", "sp_GetUtkozes.sql");
|
|
CreateSchemaFunctions("fnGetUtkozesByOsztalycsoport");
|
|
CreateSchemaStoredProcedures("sp_GetUtkozes");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|