19 lines
411 B
C#
19 lines
411 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190617131229)]
|
|
public class KRETA2_137 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetTanuloiEgyebAdatok.sql");
|
|
CreateSchemaStoredProcedures("sp_GetTanuloiEgyebAdatok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|