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