19 lines
481 B
C#
19 lines
481 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180130151840)]
|
|
public class KRETA_4974_r : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetErtesitoNyomtatvany.sql", "sp_GetDokumentumMulasztasok.sql");
|
|
CreateSchemaStoredProcedures("sp_GetErtesitoNyomtatvany", "sp_GetDokumentumMulasztasok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|