20 lines
461 B
C#
20 lines
461 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191106103905)]
|
|
public class KRETA2_1818 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetTanuloiAlapadatok.sql");
|
|
CreateSchemaSPFN("uspGetTanuloiAlapadatok");
|
|
DeleteStoredProcedures("sp_GetTanuloiAlapadatok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|