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