init
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20171207040842)]
|
||||
public class KRETA_3780_2 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"sp_GetTanuloiAlapadatok.sql",
|
||||
"sp_GetTanuloiEgyebAdatok.sql",
|
||||
"sp_GetTanuloiGondviseloAdatok.sql",
|
||||
"sp_GetTanulokMulasztasaiKesesei.sql"
|
||||
);
|
||||
|
||||
CreateSchemaStoredProcedures(
|
||||
"sp_GetTanuloiAlapadatok",
|
||||
"sp_GetTanuloiEgyebAdatok",
|
||||
"sp_GetTanuloiGondviseloAdatok",
|
||||
"sp_GetTanulokMulasztasaiKesesei"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user