init
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20170507191750)]
|
||||
public class KRETA_1137 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts("sp_GetOsztalyNaplo.sql",
|
||||
"sp_GetOrarendOsztalyonkent.sql",
|
||||
"sp_GetDokumentumTanuloNaploSorszam.sql",
|
||||
"sp_GetPedagogusOrarend.sql",
|
||||
"fnGetDokumentumOsztalyVagyTanoraiCsoport.sql"
|
||||
);
|
||||
|
||||
CreateSchemaStoredProcedures("sp_GetOsztalyNaplo",
|
||||
"sp_GetOrarendOsztalyonkent",
|
||||
"sp_GetDokumentumTanuloNaploSorszam",
|
||||
"sp_GetPedagogusOrarend"
|
||||
);
|
||||
|
||||
CreateSchemaFunctions("fnGetDokumentumOsztalyVagyTanoraiCsoport");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user