23 lines
539 B
C#
23 lines
539 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170917213930)]
|
|
public class KRETA_3194 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_Global_GenerateTanevAdatok.sql",
|
|
"sp_Global_CreateTanevRendje20172018.sql",
|
|
"sp_GenerateNaptariHetek.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GenerateNaptariHetek");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|