26 lines
794 B
C#
26 lines
794 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181105122101)]
|
|
public class KRETA_5778 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_FollowUpTerem.sql",
|
|
"sp_ImportTermek.sql",
|
|
"sp_SetRendszerErtesitesek.sql",
|
|
"uspGenerateTanevAdatokFromExistingTanev.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_FollowUpTerem",
|
|
"sp_ImportTermek",
|
|
"sp_SetRendszerErtesitesek",
|
|
"uspGenerateTanevAdatokFromExistingTanev");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|