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