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