20 lines
413 B
C#
20 lines
413 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170405150827)]
|
|
public class KRETA_141 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetErtesitoNyomtatvany.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetErtesitoNyomtatvany");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|