19 lines
482 B
C#
19 lines
482 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191218170357)]
|
|
public class DB_1730 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika.sql", "AddIndexes.sql");
|
|
CreateSchemaSPFN("sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|