28 lines
614 B
C#
28 lines
614 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180322142453)]
|
|
public class KRETA_5366 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts
|
|
(
|
|
"sp_GetDokumentumErtekelesek.sql",
|
|
"sp_GetErtesitoNyomtatvany.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures
|
|
(
|
|
"sp_GetDokumentumErtekelesek",
|
|
"sp_GetErtesitoNyomtatvany"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|