init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -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()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue