20 lines
607 B
C#
20 lines
607 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190606101131)]
|
|
public class KRETA2_63 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetDokumentumTanuloZaradekai.sql", "sp_GetErtesitoNyomtatvany.sql", "sp_GetOsztalyNaplo.sql", "sp_GetTorzslap.sql");
|
|
CreateSchemaFunctions("fnGetDokumentumTanuloZaradekai");
|
|
CreateSchemaStoredProcedures("sp_GetErtesitoNyomtatvany", "sp_GetOsztalyNaplo", "sp_GetTorzslap");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|