init
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20190603133414)]
|
||||
public class KRETA2_21 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts
|
||||
(
|
||||
"6fnGetDokumentumTanulokEvesOraszamaiOsztalyonkent.sql",
|
||||
"fnGetDokumentumOsztalyTanuloinakMegtarthatoOrakTantargyankent.sql",
|
||||
"sp_GetDokumentumErtekelesek.sql",
|
||||
"sp_GetOsztalyokEvesOraszama.sql",
|
||||
"uspGenerateTanevAdatok.sql"
|
||||
);
|
||||
|
||||
CreateSchemaFunctions
|
||||
(
|
||||
"6fnGetDokumentumTanulokEvesOraszamaiOsztalyonkent",
|
||||
"fnGetDokumentumOsztalyTanuloinakMegtarthatoOrakTantargyankent"
|
||||
);
|
||||
|
||||
CreateSchemaStoredProcedures
|
||||
(
|
||||
"sp_GetDokumentumErtekelesek",
|
||||
"sp_GetOsztalyokEvesOraszama",
|
||||
"uspGenerateTanevAdatok"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user