19 lines
439 B
C#
19 lines
439 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190408143808)]
|
|
public class AL_902 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetDokumentumErtekelesekIdoszakonkent.sql");
|
|
CreateSchemaStoredProcedures("sp_GetDokumentumErtekelesekIdoszakonkent");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|