20 lines
488 B
C#
20 lines
488 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180926103853)]
|
|
public class KRETA_6987_6682 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetHaladasiNaploAdatok.sql", "sp_GetTanarOrarendLefedettseg.sql");
|
|
CreateSchemaStoredProcedures("sp_GetHaladasiNaploAdatok", "sp_GetTanarOrarendLefedettseg");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|