19 lines
516 B
C#
19 lines
516 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200403130336)]
|
|
public class KRETA2_3695 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetMulasztasiOsszesitoStatisztika.sql", "uspGetTanulokNevsoraOsszesitoStatisztika.sql");
|
|
CreateSchemaSPFN("uspGetMulasztasiOsszesitoStatisztika", "uspGetTanulokNevsoraOsszesitoStatisztika");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|