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