20 lines
500 B
C#
20 lines
500 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170814145619)]
|
|
public class KRETA_2706 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetDokumentumMulasztasok.sql", "sp_GetElfogadottTantargyfelosztasok.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetDokumentumMulasztasok", "sp_GetElfogadottTantargyfelosztasok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|