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