init
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20190225153800)]
|
||||
public class OM_2181_DB_2 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"sp_GetNapkozisNaplo.sql",
|
||||
"sp_GetNaplozasMulasztasList.sql",
|
||||
"sp_GetOraMentessegList.sql",
|
||||
"sp_GetTanuloiEgyebAdatok.sql",
|
||||
"sp_GetTanulokLakcimmel.sql",
|
||||
"sp_TanuloKIRStatAdatokGyorsExport.sql"
|
||||
);
|
||||
CreateSchemaStoredProcedures(
|
||||
"sp_GetNapkozisNaplo",
|
||||
"sp_GetNaplozasMulasztasList",
|
||||
"sp_GetOraMentessegList",
|
||||
"sp_GetTanuloiEgyebAdatok",
|
||||
"sp_GetTanulokLakcimmel",
|
||||
"sp_TanuloKIRStatAdatokGyorsExport"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user