21 lines
505 B
C#
21 lines
505 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180327144018)]
|
|
public class KRETA_5400 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GenerateNaptariHetek.sql");
|
|
CreateSchemaStoredProcedures("sp_GenerateNaptariHetek");
|
|
|
|
ExecuteScripts("regenerate_naptarinapok_alap.sql", "regenerate_naptarinapok.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|